Lines Matching defs:bpf_tcp_sock
5357 struct bpf_tcp_sock { struct
5358 __u32 snd_cwnd; /* Sending congestion window */
5359 __u32 srtt_us; /* smoothed round trip time << 3 in usecs */
5360 __u32 rtt_min;
5361 __u32 snd_ssthresh; /* Slow start size threshold */
5362 __u32 rcv_nxt; /* What we want to receive next */
5363 __u32 snd_nxt; /* Next sequence we send */
5364 __u32 snd_una; /* First byte we want an ack for */
5365 __u32 mss_cache; /* Cached effective mss, not including SACKS */
5366 __u32 ecn_flags; /* ECN status bits. */
5367 __u32 rate_delivered; /* saved rate sample: packets delivered */
5368 __u32 rate_interval_us; /* saved rate sample: time elapsed */
5369 __u32 packets_out; /* Packets which are "in flight" */
5370 __u32 retrans_out; /* Retransmitted packets out */
5371 __u32 total_retrans; /* Total retransmits for entire connection */
5372 __u32 segs_in; /* RFC4898 tcpEStatsPerfSegsIn
5375 __u32 data_segs_in; /* RFC4898 tcpEStatsPerfDataSegsIn
5378 __u32 segs_out; /* RFC4898 tcpEStatsPerfSegsOut
5381 __u32 data_segs_out; /* RFC4898 tcpEStatsPerfDataSegsOut
5384 __u32 lost_out; /* Lost packets */
5385 __u32 sacked_out; /* SACK'd packets */
5386 __u64 bytes_received; /* RFC4898 tcpEStatsAppHCThruOctetsReceived
5390 __u64 bytes_acked; /* RFC4898 tcpEStatsAppHCThruOctetsAcked
5394 __u32 dsack_dups; /* RFC4898 tcpEStatsStackDSACKDups
5397 __u32 delivered; /* Total data packets delivered incl. rexmits */
5398 __u32 delivered_ce; /* Like the above but only ECE marked packets */
5399 __u32 icsk_retransmits; /* Number of unrecovered [RTO] timeouts */