Lines Matching defs:bpf_tcp_sock

6197 struct bpf_tcp_sock {  struct
6198 __u32 snd_cwnd; /* Sending congestion window */
6199 __u32 srtt_us; /* smoothed round trip time << 3 in usecs */
6200 __u32 rtt_min;
6201 __u32 snd_ssthresh; /* Slow start size threshold */
6202 __u32 rcv_nxt; /* What we want to receive next */
6203 __u32 snd_nxt; /* Next sequence we send */
6204 __u32 snd_una; /* First byte we want an ack for */
6205 __u32 mss_cache; /* Cached effective mss, not including SACKS */
6206 __u32 ecn_flags; /* ECN status bits. */
6207 __u32 rate_delivered; /* saved rate sample: packets delivered */
6208 __u32 rate_interval_us; /* saved rate sample: time elapsed */
6209 __u32 packets_out; /* Packets which are "in flight" */
6210 __u32 retrans_out; /* Retransmitted packets out */
6211 __u32 total_retrans; /* Total retransmits for entire connection */
6212 __u32 segs_in; /* RFC4898 tcpEStatsPerfSegsIn
6215 __u32 data_segs_in; /* RFC4898 tcpEStatsPerfDataSegsIn
6218 __u32 segs_out; /* RFC4898 tcpEStatsPerfSegsOut
6221 __u32 data_segs_out; /* RFC4898 tcpEStatsPerfDataSegsOut
6224 __u32 lost_out; /* Lost packets */
6225 __u32 sacked_out; /* SACK'd packets */
6226 __u64 bytes_received; /* RFC4898 tcpEStatsAppHCThruOctetsReceived
6230 __u64 bytes_acked; /* RFC4898 tcpEStatsAppHCThruOctetsAcked
6234 __u32 dsack_dups; /* RFC4898 tcpEStatsStackDSACKDups
6237 __u32 delivered; /* Total data packets delivered incl. rexmits */
6238 __u32 delivered_ce; /* Like the above but only ECE marked packets */
6239 __u32 icsk_retransmits; /* Number of unrecovered [RTO] timeouts */