Lines Matching defs:tcp_info
127 struct tcp_info { struct
128 uint8_t tcpi_state; /* TCP FSM state. */
129 uint8_t __tcpi_ca_state;
130 uint8_t __tcpi_retransmits;
131 uint8_t __tcpi_probes;
132 uint8_t __tcpi_backoff;
133 uint8_t tcpi_options; /* Options enabled on conn. */
139 uint8_t tcpi_snd_wscale; /* RFC1323 send shift value. */
140 uint8_t tcpi_rcv_wscale; /* RFC1323 recv shift value. */
142 uint32_t tcpi_rto; /* Retransmission timeout (usec). */
143 uint32_t __tcpi_ato;
144 uint32_t tcpi_snd_mss; /* Max segment size for send. */
145 uint32_t tcpi_rcv_mss; /* Max segment size for recv. */
147 uint32_t __tcpi_unacked;
148 uint32_t __tcpi_sacked;
149 uint32_t __tcpi_lost;
150 uint32_t __tcpi_retrans;
151 uint32_t __tcpi_fackets;
177 /* FreeBSD/NetBSD extensions to tcp_info. */ argument
178 uint32_t tcpi_snd_wnd; /* Advertised send window. */
179 uint32_t tcpi_snd_nxt; /* Next egress seqno */
180 uint32_t tcpi_rcv_nxt; /* Next ingress seqno */
181 uint32_t tcpi_toe_tid; /* HWTID for TOE endpoints */
182 uint32_t tcpi_snd_rexmitpack; /* Retransmitted packets */
183 uint32_t tcpi_rcv_ooopack; /* Out-of-order packets */
184 uint32_t tcpi_snd_zerowin; /* Zero-sized windows sent */
187 uint32_t tcpi_rttmin;
188 uint32_t tcpi_max_sndwnd;
189 uint32_t tcpi_rcv_adv;
190 uint32_t tcpi_rcv_up;
191 uint32_t tcpi_snd_una;
192 uint32_t tcpi_snd_up;
193 uint32_t tcpi_snd_wl1;
194 uint32_t tcpi_snd_wl2;
195 uint32_t tcpi_snd_max;
219 #define TCP_INFO 0x09 /* retrieve tcp_info structure */ argument