• Home
  • Raw
  • Download

Lines Matching defs:mptcp_sock

258 struct mptcp_sock {  struct
260 struct inet_connection_sock sk;
261 u64 local_key;
262 u64 remote_key;
263 u64 write_seq;
264 u64 bytes_sent;
265 u64 snd_nxt;
266 u64 bytes_received;
267 u64 ack_seq;
268 atomic64_t rcv_wnd_sent;
269 u64 rcv_data_fin_seq;
270 u64 bytes_retrans;
271 int rmem_fwd_alloc;
272 int snd_burst;
273 int old_wspace;
274 u64 recovery_snd_nxt; /* in recovery mode accept up to this seq;
278 u64 bytes_acked;
279 u64 snd_una;
280 u64 wnd_end;
281 unsigned long timer_ival;
282 u32 token;
283 int rmem_released;
284 unsigned long flags;
285 unsigned long cb_flags;
286 bool recovery; /* closing subflow write queue reinjected */
287 bool can_ack;
288 bool fully_established;
289 bool rcv_data_fin;
290 bool snd_data_fin_enable;
291 bool rcv_fastclose;
292 bool use_64bit_ack; /* Set when we received a 64-bit DSN */
293 bool csum_enabled;
294 bool allow_infinite_fallback;
295 u8 pending_state; /* A subflow asked to set this sk_state,
298 u8 mpc_endpoint_id;
299 u8 recvmsg_inq:1,
300 cork:1,
301 nodelay:1,
302 fastopening:1,
303 in_accept_queue:1,
304 free_first:1,
305 rcvspace_init:1;
306 struct work_struct work;
307 struct sk_buff *ooo_last_skb;
308 struct rb_root out_of_order_queue;
309 struct sk_buff_head receive_queue;
310 struct list_head conn_list;
311 struct list_head rtx_queue;
312 struct mptcp_data_frag *first_pending;
313 struct list_head join_list;
314 struct sock *first; /* The mptcp ops can safely dereference, using suitable
341 static inline void msk_owned_by_me(const struct mptcp_sock *msk) in msk_owned_by_me() argument