Lines Matching defs:bundle
70 struct bundle { struct
71 struct fdescriptor desc; /* really all our datalinks */
72 int unit; /* The device/interface unit number */
74 struct {
78 } dev;
80 u_long bandwidth; /* struct tuninfo speed */
81 struct iface *iface; /* Interface information */
83 int routing_seq; /* The current routing sequence number */
84 u_int phase; /* Curent phase */
86 struct {
89 } phys_type;
91 unsigned CleaningUp : 1; /* Going to exit.... */
92 unsigned NatEnabled : 1; /* Are we using libalias ? */
94 struct fsm_parent fsm; /* Our callback functions */
95 struct datalink *links; /* Our data links */
97 time_t upat; /* When the link came up */
99 struct {
115 } cfg;
117 struct ncp ncp;
119 struct {
124 } filter;
126 struct {
152 #define descriptor2bundle(d) \ argument
153 ((d)->type == BUNDLE_DESCRIPTOR ? (struct bundle *)(d) : NULL) argument