• Home
  • Raw
  • Download

Lines Matching defs:bpf_tcp_sock

4218 struct bpf_tcp_sock {  struct
4219 __u32 snd_cwnd; /* Sending congestion window */
4220 __u32 srtt_us; /* smoothed round trip time << 3 in usecs */
4221 __u32 rtt_min;
4222 __u32 snd_ssthresh; /* Slow start size threshold */
4223 __u32 rcv_nxt; /* What we want to receive next */
4224 __u32 snd_nxt; /* Next sequence we send */
4225 __u32 snd_una; /* First byte we want an ack for */
4226 __u32 mss_cache; /* Cached effective mss, not including SACKS */
4227 __u32 ecn_flags; /* ECN status bits. */
4228 __u32 rate_delivered; /* saved rate sample: packets delivered */
4229 __u32 rate_interval_us; /* saved rate sample: time elapsed */
4230 __u32 packets_out; /* Packets which are "in flight" */
4231 __u32 retrans_out; /* Retransmitted packets out */
4232 __u32 total_retrans; /* Total retransmits for entire connection */
4233 __u32 segs_in; /* RFC4898 tcpEStatsPerfSegsIn
4236 __u32 data_segs_in; /* RFC4898 tcpEStatsPerfDataSegsIn
4239 __u32 segs_out; /* RFC4898 tcpEStatsPerfSegsOut
4242 __u32 data_segs_out; /* RFC4898 tcpEStatsPerfDataSegsOut
4245 __u32 lost_out; /* Lost packets */
4246 __u32 sacked_out; /* SACK'd packets */
4247 __u64 bytes_received; /* RFC4898 tcpEStatsAppHCThruOctetsReceived
4251 __u64 bytes_acked; /* RFC4898 tcpEStatsAppHCThruOctetsAcked
4255 __u32 dsack_dups; /* RFC4898 tcpEStatsStackDSACKDups
4258 __u32 delivered; /* Total data packets delivered incl. rexmits */
4259 __u32 delivered_ce; /* Like the above but only ECE marked packets */
4260 __u32 icsk_retransmits; /* Number of unrecovered [RTO] timeouts */