• Home
  • Raw
  • Download

Lines Matching defs:tcp_sock

96340 struct tcp_sock {  struct
96341 struct inet_connection_sock inet_conn;
96342 u16 tcp_header_len;
96343 u16 gso_segs;
96344 __be32 pred_flags;
96345 u64 bytes_received;
96346 u32 segs_in;
96347 u32 data_segs_in;
96348 u32 rcv_nxt;
96349 u32 copied_seq;
96350 u32 rcv_wup;
96351 u32 snd_nxt;
96352 u32 segs_out;
96353 u32 data_segs_out;
96354 u64 bytes_sent;
96355 u64 bytes_acked;
96356 u32 dsack_dups;
96357 u32 snd_una;
96358 u32 snd_sml;
96359 u32 rcv_tstamp;
96360 u32 lsndtime;
96361 u32 last_oow_ack_time;
96362 u32 compressed_ack_rcv_nxt;
96363 u32 tsoffset;
96364 struct list_head tsq_node;
96365 struct list_head tsorted_sent_queue;
96366 u32 snd_wl1;
96367 u32 snd_wnd;
96368 u32 max_window;
96369 u32 mss_cache;
96370 u32 window_clamp;
96371 u32 rcv_ssthresh;
96372 struct tcp_rack rack;
96373 u16 advmss;
96374 u8 compressed_ack;
96375 u8 dup_ack_counter: 2;
96376 u8 tlp_retrans: 1;
96377 u8 unused: 5;
96378 u32 chrono_start;
96379 u32 chrono_stat[3];
96380 u8 chrono_type: 2;
96381 u8 rate_app_limited: 1;
96382 u8 fastopen_connect: 1;
96383 u8 fastopen_no_cookie: 1;
96384 u8 is_sack_reneg: 1;
96385 u8 fastopen_client_fail: 2;
96386 u8 nonagle: 4;
96387 u8 thin_lto: 1;
96388 u8 recvmsg_inq: 1;
96389 u8 repair: 1;
96390 u8 frto: 1;
96391 u8 repair_queue;
96392 u8 save_syn: 2;
96393 u8 syn_data: 1;
96394 u8 syn_fastopen: 1;
96395 u8 syn_fastopen_exp: 1;
96396 u8 syn_fastopen_ch: 1;
96397 u8 syn_data_acked: 1;
96398 u8 is_cwnd_limited: 1;
96399 u32 tlp_high_seq;
96400 u32 tcp_tx_delay;
96401 u64 tcp_wstamp_ns;
96402 u64 tcp_clock_cache;
96403 u64 tcp_mstamp;
96404 u32 srtt_us;
96405 u32 mdev_us;
96406 u32 mdev_max_us;
96407 u32 rttvar_us;
96408 u32 rtt_seq;
96409 struct minmax rtt_min;
96410 u32 packets_out;
96411 u32 retrans_out;
96412 u32 max_packets_out;
96413 u32 max_packets_seq;
96414 u16 urg_data;
96415 u8 ecn_flags;
96416 u8 keepalive_probes;
96417 u32 reordering;
96418 u32 reord_seen;
96419 u32 snd_up;
96420 struct tcp_options_received rx_opt;
96421 u32 snd_ssthresh;
96422 u32 snd_cwnd;
96423 u32 snd_cwnd_cnt;
96424 u32 snd_cwnd_clamp;
96425 u32 snd_cwnd_used;
96426 u32 snd_cwnd_stamp;
96427 u32 prior_cwnd;
96428 u32 prr_delivered;
96429 u32 prr_out;
96430 u32 delivered;
96431 u32 delivered_ce;
96432 u32 lost;
96433 u32 app_limited;
96434 u64 first_tx_mstamp;
96435 u64 delivered_mstamp;
96436 u32 rate_delivered;
96437 u32 rate_interval_us;
96438 u32 rcv_wnd;
96439 u32 write_seq;
96440 u32 notsent_lowat;
96441 u32 pushed_seq;
96442 u32 lost_out;
96443 u32 sacked_out;
96444 struct hrtimer pacing_timer;
96445 struct hrtimer compressed_ack_timer;
96446 struct sk_buff *lost_skb_hint;
96447 struct sk_buff *retransmit_skb_hint;
96448 struct rb_root out_of_order_queue;
96449 struct sk_buff *ooo_last_skb;
96450 struct tcp_sack_block duplicate_sack[1];
96451 struct tcp_sack_block selective_acks[4];
96452 struct tcp_sack_block recv_sack_cache[4];
96453 struct sk_buff *highest_sack;
96454 int lost_cnt_hint;
96455 u32 prior_ssthresh;
96456 u32 high_seq;
96457 u32 retrans_stamp;
96458 u32 undo_marker;
96459 int undo_retrans;
96460 u64 bytes_retrans;
96461 u32 total_retrans;
96462 u32 urg_seq;
96463 unsigned int keepalive_time;
96487 const struct tcp_sock_af_ops *af_specific; argument
96496 struct tcp_sock_af_ops { argument
110058 struct sock *tcp_sock; member