Lines Matching defs:tcp_info
159 struct tcp_info { struct
160 uint8_t tcpi_state; /* TCP FSM state. */
161 uint8_t __tcpi_ca_state;
162 uint8_t __tcpi_retransmits;
163 uint8_t __tcpi_probes;
164 uint8_t __tcpi_backoff;
165 uint8_t tcpi_options; /* Options enabled on conn. */
167 uint8_t tcpi_snd_wscale:4, /* RFC1323 send shift value. */
169 tcpi_rcv_wscale:4; /* RFC1323 recv shift value. */
171 uint32_t tcpi_rto; /* Retransmission timeout (usec). */
172 uint32_t __tcpi_ato;
173 uint32_t tcpi_snd_mss; /* Max segment size for send. */
174 uint32_t tcpi_rcv_mss; /* Max segment size for receive. */
176 uint32_t __tcpi_unacked;
177 uint32_t __tcpi_sacked;
201 /* FreeBSD/NetBSD extensions to tcp_info. */ argument
202 uint32_t tcpi_snd_wnd; /* Advertised send window. */
203 uint32_t tcpi_snd_bwnd; /* No longer used. */
204 uint32_t tcpi_snd_nxt; /* Next egress seqno */
205 uint32_t tcpi_rcv_nxt; /* Next ingress seqno */
206 uint32_t tcpi_toe_tid; /* HWTID for TOE endpoints */
207 uint32_t tcpi_snd_rexmitpack; /* Retransmitted packets */
208 uint32_t tcpi_rcv_ooopack; /* Out-of-order packets */
209 uint32_t tcpi_snd_zerowin; /* Zero-sized windows sent */
212 uint32_t __tcpi_pad[26]; /* Padding. */