Lines Matching defs:tipc_link
141 struct tipc_link { struct
142 u32 addr;
143 char name[TIPC_MAX_LINK_NAME];
144 struct tipc_media_addr media_addr;
145 struct timer_list timer;
146 struct tipc_node *owner;
149 unsigned int flags;
150 u32 checkpoint;
151 u32 peer_session;
152 u32 peer_bearer_id;
153 u32 bearer_id;
154 u32 tolerance;
155 u32 continuity_interval;
156 u32 abort_limit;
157 int state;
158 u32 fsm_msg_cnt;
159 struct {
162 } proto_msg;
163 struct tipc_msg *pmsg;
164 u32 priority;
165 char net_plane;
166 u32 queue_limit[15]; /* queue_limit[0]==window limit */
169 u32 exp_msg_count;
170 u32 reset_checkpoint;
173 u32 max_pkt;
174 u32 max_pkt_target;
175 u32 max_pkt_probes;
178 u32 out_queue_size;
179 struct sk_buff *first_out;
180 struct sk_buff *last_out;
181 u32 next_out_no;
182 u32 last_retransmitted;
183 u32 stale_count;
209 struct tipc_link *tipc_link_create(struct tipc_node *n_ptr, argument