Lines Matching defs:bundle
75 struct bundle { struct
76 struct fdescriptor desc; /* really all our datalinks */
77 int unit; /* The device/interface unit number */
79 struct {
83 } dev;
85 u_long bandwidth; /* struct tuninfo speed */
86 struct iface *iface; /* Interface information */
88 int routing_seq; /* The current routing sequence number */
89 u_int phase; /* Curent phase */
91 struct {
94 } phys_type;
96 unsigned CleaningUp : 1; /* Going to exit.... */
97 unsigned NatEnabled : 1; /* Are we using libalias ? */
99 struct fsm_parent fsm; /* Our callback functions */
100 struct datalink *links; /* Our data links */
102 time_t upat; /* When the link came up */
104 struct {
120 } cfg;
122 struct ncp ncp;
124 struct {
129 } filter;
131 struct {
134 } idle;
160 #define descriptor2bundle(d) \ argument
161 ((d)->type == BUNDLE_DESCRIPTOR ? (struct bundle *)(d) : NULL) argument