Lines Matching defs:tcpstat

104 struct	tcpstat {  struct
105 uint_t tcps_connattempt; /* connections initiated */
106 uint_t tcps_accepts; /* connections accepted */
107 uint_t tcps_connects; /* connections established */
108 uint_t tcps_drops; /* connections dropped */
109 uint_t tcps_conndrops; /* embryonic connections dropped */
110 uint_t tcps_closed; /* conn. closed (includes drops) */
111 uint_t tcps_segstimed; /* segs where we tried to get rtt */
112 uint_t tcps_rttupdated; /* times we succeeded */
113 uint_t tcps_delack; /* delayed acks sent */
114 uint_t tcps_timeoutdrop; /* conn. dropped in rxmt timeout */
115 uint_t tcps_rexmttimeo; /* retransmit timeouts */
116 uint_t tcps_persisttimeo; /* persist timeouts */
117 uint_t tcps_keeptimeo; /* keepalive timeouts */
118 uint_t tcps_keepprobe; /* keepalive probes sent */
119 uint_t tcps_keepdrops; /* connections dropped in keepalive */
121 uint_t tcps_sndtotal; /* total packets sent */
122 uint_t tcps_sndpack; /* data packets sent */
123 uint_t tcps_sndbyte; /* data bytes sent */
124 uint_t tcps_sndrexmitpack; /* data packets retransmitted */
125 uint_t tcps_sndrexmitbyte; /* data bytes retransmitted */
126 uint_t tcps_sndacks; /* ack-only packets sent */
127 uint_t tcps_sndprobe; /* window probes sent */
128 uint_t tcps_sndurg; /* packets sent with URG only */
129 uint_t tcps_sndwinup; /* window update-only packets sent */
130 uint_t tcps_sndctrl; /* control (SYN|FIN|RST) packets sent */
132 uint_t tcps_rcvtotal; /* total packets received */
133 uint_t tcps_rcvpack; /* packets received in sequence */
134 uint_t tcps_rcvbyte; /* bytes received in sequence */
135 uint_t tcps_rcvbadsum; /* packets received with ccksum errs */
136 uint_t tcps_rcvbadoff; /* packets received with bad offset */
137 uint_t tcps_rcvshort; /* packets received too short */
138 uint_t tcps_rcvduppack; /* duplicate-only packets received */
139 uint_t tcps_rcvdupbyte; /* duplicate-only bytes received */
140 uint_t tcps_rcvpartduppack; /* packets with some duplicate data */
141 uint_t tcps_rcvpartdupbyte; /* dup. bytes in part-dup. packets */
142 uint_t tcps_rcvoopack; /* out-of-order packets received */
143 uint_t tcps_rcvoobyte; /* out-of-order bytes received */
144 uint_t tcps_rcvpackafterwin; /* packets with data after window */
145 uint_t tcps_rcvbyteafterwin; /* bytes rcvd after window */
146 uint_t tcps_rcvafterclose; /* packets rcvd after "close" */
147 uint_t tcps_rcvwinprobe; /* rcvd window probe packets */
148 uint_t tcps_rcvdupack; /* rcvd duplicate acks */
149 uint_t tcps_rcvacktoomuch; /* rcvd acks for unsent data */
150 uint_t tcps_rcvackpack; /* rcvd ack packets */
151 uint_t tcps_rcvackbyte; /* bytes acked by rcvd acks */
152 uint_t tcps_rcvwinupd; /* rcvd window update packets */