2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * Copyright (c) 1982, 1986, 1993, 1994, 1995
24 * The Regents of the University of California. All rights reserved.
26 * Redistribution and use in source and binary forms, with or without
27 * modification, are permitted provided that the following conditions
29 * 1. Redistributions of source code must retain the above copyright
30 * notice, this list of conditions and the following disclaimer.
31 * 2. Redistributions in binary form must reproduce the above copyright
32 * notice, this list of conditions and the following disclaimer in the
33 * documentation and/or other materials provided with the distribution.
34 * 3. All advertising materials mentioning features or use of this software
35 * must display the following acknowledgement:
36 * This product includes software developed by the University of
37 * California, Berkeley and its contributors.
38 * 4. Neither the name of the University nor the names of its contributors
39 * may be used to endorse or promote products derived from this software
40 * without specific prior written permission.
42 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
43 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
44 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
45 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
46 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
47 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
48 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
49 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
50 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
51 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
54 * @(#)tcp_var.h 8.4 (Berkeley) 5/24/95
55 * $FreeBSD: src/sys/netinet/tcp_var.h,v 1.56.2.8 2001/08/22 00:59:13 silby Exp $
58 #ifndef _NETINET_TCP_VAR_H_
59 #define _NETINET_TCP_VAR_H_
60 #include <sys/appleapiopts.h>
61 #include <netinet/tcp_timer.h>
62 #ifdef __APPLE_API_PRIVATE
64 #define N_TIME_WAIT_SLOTS 128 /* must be power of 2 */
67 * Kernel variables for tcp.
70 /* TCP segment queue entry */
72 LIST_ENTRY(tseg_qent
) tqe_q
;
73 int tqe_len
; /* TCP segment data length */
74 struct tcphdr
*tqe_th
; /* a pointer to tcp header */
75 struct mbuf
*tqe_m
; /* mbuf contains packet */
77 LIST_HEAD(tsegqe_head
, tseg_qent
);
78 extern int tcp_reass_maxseg
;
79 extern int tcp_reass_qsize
;
81 MALLOC_DECLARE(M_TSEGQ
);
85 u_char tt_ipgen
[40]; /* the size must be of max ip header, now IPv6 */
89 #define tcp6cb tcpcb /* for KAME src sync over BSD*'s */
92 #define TCP_DELACK_BITSET(hash_elem)\
93 delack_bitmask[((hash_elem) >> 5)] |= 1 << ((hash_elem) & 0x1F)
95 #define DELACK_BITMASK_ON 1
96 #define DELACK_BITMASK_THRESH 300
100 * Tcp control block, one per tcp; fields:
101 * Organized for 16 byte cacheline efficiency.
105 struct tsegqe_head t_segq
;
106 int t_dupacks
; /* consecutive dup acks recd */
107 struct tcptemp
*unused
; /* unused now: was t_template */
109 int t_timer
[TCPT_NTIMERS
]; /* tcp timers */
111 struct inpcb
*t_inpcb
; /* back pointer to internet pcb */
112 int t_state
; /* state of this connection */
114 #define TF_ACKNOW 0x00001 /* ack peer immediately */
115 #define TF_DELACK 0x00002 /* ack, but try to delay it */
116 #define TF_NODELAY 0x00004 /* don't delay packets to coalesce */
117 #define TF_NOOPT 0x00008 /* don't use tcp options */
118 #define TF_SENTFIN 0x00010 /* have sent FIN */
119 #define TF_REQ_SCALE 0x00020 /* have/will request window scaling */
120 #define TF_RCVD_SCALE 0x00040 /* other side has requested scaling */
121 #define TF_REQ_TSTMP 0x00080 /* have/will request timestamps */
122 #define TF_RCVD_TSTMP 0x00100 /* a timestamp was received in SYN */
123 #define TF_SACK_PERMIT 0x00200 /* other side said I could SACK */
124 #define TF_NEEDSYN 0x00400 /* send SYN (implicit state) */
125 #define TF_NEEDFIN 0x00800 /* send FIN (implicit state) */
126 #define TF_NOPUSH 0x01000 /* don't push */
127 #define TF_REQ_CC 0x02000 /* have/will request CC */
128 #define TF_RCVD_CC 0x04000 /* a CC was received in SYN */
129 #define TF_SENDCCNEW 0x08000 /* send CCnew instead of CC in SYN */
130 #define TF_MORETOCOME 0x10000 /* More data to be appended to sock */
131 #define TF_LQ_OVERFLOW 0x20000 /* listen queue overflow */
132 #define TF_RXWIN0SENT 0x40000 /* sent a receiver win 0 in response */
133 #define TF_SLOWLINK 0x80000 /* route is a on a modem speed link */
135 int t_force
; /* 1 if forcing out a byte */
137 tcp_seq snd_una
; /* send unacknowledged */
138 tcp_seq snd_max
; /* highest sequence number sent;
139 * used to recognize retransmits
141 tcp_seq snd_nxt
; /* send next */
142 tcp_seq snd_up
; /* send urgent pointer */
144 tcp_seq snd_wl1
; /* window update seg seq number */
145 tcp_seq snd_wl2
; /* window update seg ack number */
146 tcp_seq iss
; /* initial send sequence number */
147 tcp_seq irs
; /* initial receive sequence number */
149 tcp_seq rcv_nxt
; /* receive next */
150 tcp_seq rcv_adv
; /* advertised window */
151 u_long rcv_wnd
; /* receive window */
152 tcp_seq rcv_up
; /* receive urgent pointer */
154 u_long snd_wnd
; /* send window */
155 u_long snd_cwnd
; /* congestion-controlled window */
156 u_long snd_ssthresh
; /* snd_cwnd size threshold for
157 * for slow start exponential to
160 u_int t_maxopd
; /* mss plus options */
162 u_long t_rcvtime
; /* inactivity time */
163 u_long t_starttime
; /* time connection was established */
164 int t_rtttime
; /* round trip time */
165 tcp_seq t_rtseq
; /* sequence number being timed */
167 int t_rxtcur
; /* current retransmit value (ticks) */
168 u_int t_maxseg
; /* maximum segment size */
169 int t_srtt
; /* smoothed round-trip time */
170 int t_rttvar
; /* variance in round-trip time */
172 int t_rxtshift
; /* log(2) of rexmt exp. backoff */
173 u_int t_rttmin
; /* minimum rtt allowed */
174 u_long t_rttupdated
; /* number of times rtt sampled */
175 u_long max_sndwnd
; /* largest window peer has offered */
177 int t_softerror
; /* possible error not yet reported */
178 /* out-of-band data */
179 char t_oobflags
; /* have some */
180 char t_iobc
; /* input character */
181 #define TCPOOB_HAVEDATA 0x01
182 #define TCPOOB_HADDATA 0x02
183 /* RFC 1323 variables */
184 u_char snd_scale
; /* window scaling for send window */
185 u_char rcv_scale
; /* window scaling for recv window */
186 u_char request_r_scale
; /* pending window scaling */
187 u_char requested_s_scale
;
188 u_long ts_recent
; /* timestamp echo data */
190 u_long ts_recent_age
; /* when last updated */
191 tcp_seq last_ack_sent
;
192 /* RFC 1644 variables */
193 tcp_cc cc_send
; /* send connection count */
194 tcp_cc cc_recv
; /* receive connection count */
195 tcp_seq snd_recover
; /* for use in fast recovery */
197 u_long snd_cwnd_prev
; /* cwnd prior to retransmit */
198 u_long snd_ssthresh_prev
; /* ssthresh prior to retransmit */
199 u_long t_badrxtwin
; /* window for retransmit recovery */
201 int t_keepidle
; /* keepalive idle timer (override global if > 0) */
211 * Jaguar compatible TCP control block, for xtcpcb
212 * Does not have the old fields
215 struct tsegqe_head t_segq
;
216 int t_dupacks
; /* consecutive dup acks recd */
217 struct tcptemp
*unused
; /* unused now: was t_template */
219 int t_timer
[TCPT_NTIMERS
]; /* tcp timers */
221 struct inpcb
*t_inpcb
; /* back pointer to internet pcb */
222 int t_state
; /* state of this connection */
224 #define TF_ACKNOW 0x00001 /* ack peer immediately */
225 #define TF_DELACK 0x00002 /* ack, but try to delay it */
226 #define TF_NODELAY 0x00004 /* don't delay packets to coalesce */
227 #define TF_NOOPT 0x00008 /* don't use tcp options */
228 #define TF_SENTFIN 0x00010 /* have sent FIN */
229 #define TF_REQ_SCALE 0x00020 /* have/will request window scaling */
230 #define TF_RCVD_SCALE 0x00040 /* other side has requested scaling */
231 #define TF_REQ_TSTMP 0x00080 /* have/will request timestamps */
232 #define TF_RCVD_TSTMP 0x00100 /* a timestamp was received in SYN */
233 #define TF_SACK_PERMIT 0x00200 /* other side said I could SACK */
234 #define TF_NEEDSYN 0x00400 /* send SYN (implicit state) */
235 #define TF_NEEDFIN 0x00800 /* send FIN (implicit state) */
236 #define TF_NOPUSH 0x01000 /* don't push */
237 #define TF_REQ_CC 0x02000 /* have/will request CC */
238 #define TF_RCVD_CC 0x04000 /* a CC was received in SYN */
239 #define TF_SENDCCNEW 0x08000 /* send CCnew instead of CC in SYN */
240 #define TF_MORETOCOME 0x10000 /* More data to be appended to sock */
241 #define TF_LQ_OVERFLOW 0x20000 /* listen queue overflow */
242 #define TF_RXWIN0SENT 0x40000 /* sent a receiver win 0 in response */
243 #define TF_SLOWLINK 0x80000 /* route is a on a modem speed link */
245 int t_force
; /* 1 if forcing out a byte */
247 tcp_seq snd_una
; /* send unacknowledged */
248 tcp_seq snd_max
; /* highest sequence number sent;
249 * used to recognize retransmits
251 tcp_seq snd_nxt
; /* send next */
252 tcp_seq snd_up
; /* send urgent pointer */
254 tcp_seq snd_wl1
; /* window update seg seq number */
255 tcp_seq snd_wl2
; /* window update seg ack number */
256 tcp_seq iss
; /* initial send sequence number */
257 tcp_seq irs
; /* initial receive sequence number */
259 tcp_seq rcv_nxt
; /* receive next */
260 tcp_seq rcv_adv
; /* advertised window */
261 u_long rcv_wnd
; /* receive window */
262 tcp_seq rcv_up
; /* receive urgent pointer */
264 u_long snd_wnd
; /* send window */
265 u_long snd_cwnd
; /* congestion-controlled window */
266 u_long snd_ssthresh
; /* snd_cwnd size threshold for
267 * for slow start exponential to
270 u_int t_maxopd
; /* mss plus options */
272 u_long t_rcvtime
; /* inactivity time */
273 u_long t_starttime
; /* time connection was established */
274 int t_rtttime
; /* round trip time */
275 tcp_seq t_rtseq
; /* sequence number being timed */
277 int t_rxtcur
; /* current retransmit value (ticks) */
278 u_int t_maxseg
; /* maximum segment size */
279 int t_srtt
; /* smoothed round-trip time */
280 int t_rttvar
; /* variance in round-trip time */
282 int t_rxtshift
; /* log(2) of rexmt exp. backoff */
283 u_int t_rttmin
; /* minimum rtt allowed */
284 u_long t_rttupdated
; /* number of times rtt sampled */
285 u_long max_sndwnd
; /* largest window peer has offered */
287 int t_softerror
; /* possible error not yet reported */
288 /* out-of-band data */
289 char t_oobflags
; /* have some */
290 char t_iobc
; /* input character */
291 #define TCPOOB_HAVEDATA 0x01
292 #define TCPOOB_HADDATA 0x02
293 /* RFC 1323 variables */
294 u_char snd_scale
; /* window scaling for send window */
295 u_char rcv_scale
; /* window scaling for recv window */
296 u_char request_r_scale
; /* pending window scaling */
297 u_char requested_s_scale
;
298 u_long ts_recent
; /* timestamp echo data */
300 u_long ts_recent_age
; /* when last updated */
301 tcp_seq last_ack_sent
;
302 /* RFC 1644 variables */
303 tcp_cc cc_send
; /* send connection count */
304 tcp_cc cc_recv
; /* receive connection count */
305 tcp_seq snd_recover
; /* for use in fast recovery */
307 u_long snd_cwnd_prev
; /* cwnd prior to retransmit */
308 u_long snd_ssthresh_prev
; /* ssthresh prior to retransmit */
309 u_long t_badrxtwin
; /* window for retransmit recovery */
314 * Structure to hold TCP options that are only used during segment
315 * processing (in tcp_input), but not held in the tcpcb.
316 * It's basically used to reduce the number of parameters
320 u_long to_flag
; /* which options are present */
321 #define TOF_TS 0x0001 /* timestamp */
322 #define TOF_CC 0x0002 /* CC and CCnew are exclusive */
323 #define TOF_CCNEW 0x0004
324 #define TOF_CCECHO 0x0008
327 tcp_cc to_cc
; /* holds CC or CCnew */
329 u_short reserved
; /* unused now: was to_maxseg */
333 * The TAO cache entry which is stored in the protocol family specific
334 * portion of the route metrics.
337 tcp_cc tao_cc
; /* latest CC in valid SYN */
338 tcp_cc tao_ccsent
; /* latest CC sent to peer */
339 u_short tao_mssopt
; /* peer's cached MSS */
341 u_short tao_flags
; /* cache status flags */
342 #define TAOF_DONT 0x0001 /* peer doesn't understand rfc1644 */
343 #define TAOF_OK 0x0002 /* peer does understand rfc1644 */
344 #define TAOF_UNDEF 0 /* we don't know yet */
347 #define rmx_taop(r) ((struct rmxp_tao *)(r).rmx_filler)
349 #define intotcpcb(ip) ((struct tcpcb *)(ip)->inp_ppcb)
350 #define sototcpcb(so) (intotcpcb(sotoinpcb(so)))
353 * The smoothed round-trip time and estimated variance
354 * are stored as fixed point numbers scaled by the values below.
355 * For convenience, these scales are also used in smoothing the average
356 * (smoothed = (1/scale)sample + ((scale-1)/scale)smoothed).
357 * With these scales, srtt has 3 bits to the right of the binary point,
358 * and thus an "ALPHA" of 0.875. rttvar has 2 bits to the right of the
359 * binary point, and is smoothed with an ALPHA of 0.75.
361 #define TCP_RTT_SCALE 32 /* multiplier for srtt; 3 bits frac. */
362 #define TCP_RTT_SHIFT 5 /* shift for srtt; 3 bits frac. */
363 #define TCP_RTTVAR_SCALE 16 /* multiplier for rttvar; 2 bits */
364 #define TCP_RTTVAR_SHIFT 4 /* shift for rttvar; 2 bits */
365 #define TCP_DELTA_SHIFT 2 /* see tcp_input.c */
368 * The initial retransmission should happen at rtt + 4 * rttvar.
369 * Because of the way we do the smoothing, srtt and rttvar
370 * will each average +1/2 tick of bias. When we compute
371 * the retransmit timer, we want 1/2 tick of rounding and
372 * 1 extra tick because of +-1/2 tick uncertainty in the
373 * firing of the timer. The bias will give us exactly the
374 * 1.5 tick we need. But, because the bias is
375 * statistical, we have to test that we don't drop below
376 * the minimum feasible timer (which is 2 ticks).
377 * This version of the macro adapted from a paper by Lawrence
378 * Brakmo and Larry Peterson which outlines a problem caused
379 * by insufficient precision in the original implementation,
380 * which results in inappropriately large RTO values for very
383 #define TCP_REXMTVAL(tp) \
384 max((tp)->t_rttmin, (((tp)->t_srtt >> (TCP_RTT_SHIFT - TCP_DELTA_SHIFT)) \
385 + (tp)->t_rttvar) >> TCP_DELTA_SHIFT)
386 #endif /* __APPLE_API_PRIVATE */
388 #ifdef __APPLE_API_UNSTABLE
391 * Many of these should be kept per connection,
392 * but that's inconvenient at the moment.
395 u_long tcps_connattempt
; /* connections initiated */
396 u_long tcps_accepts
; /* connections accepted */
397 u_long tcps_connects
; /* connections established */
398 u_long tcps_drops
; /* connections dropped */
399 u_long tcps_conndrops
; /* embryonic connections dropped */
400 u_long tcps_closed
; /* conn. closed (includes drops) */
401 u_long tcps_segstimed
; /* segs where we tried to get rtt */
402 u_long tcps_rttupdated
; /* times we succeeded */
403 u_long tcps_delack
; /* delayed acks sent */
404 u_long tcps_timeoutdrop
; /* conn. dropped in rxmt timeout */
405 u_long tcps_rexmttimeo
; /* retransmit timeouts */
406 u_long tcps_persisttimeo
; /* persist timeouts */
407 u_long tcps_keeptimeo
; /* keepalive timeouts */
408 u_long tcps_keepprobe
; /* keepalive probes sent */
409 u_long tcps_keepdrops
; /* connections dropped in keepalive */
411 u_long tcps_sndtotal
; /* total packets sent */
412 u_long tcps_sndpack
; /* data packets sent */
413 u_long tcps_sndbyte
; /* data bytes sent */
414 u_long tcps_sndrexmitpack
; /* data packets retransmitted */
415 u_long tcps_sndrexmitbyte
; /* data bytes retransmitted */
416 u_long tcps_sndacks
; /* ack-only packets sent */
417 u_long tcps_sndprobe
; /* window probes sent */
418 u_long tcps_sndurg
; /* packets sent with URG only */
419 u_long tcps_sndwinup
; /* window update-only packets sent */
420 u_long tcps_sndctrl
; /* control (SYN|FIN|RST) packets sent */
422 u_long tcps_rcvtotal
; /* total packets received */
423 u_long tcps_rcvpack
; /* packets received in sequence */
424 u_long tcps_rcvbyte
; /* bytes received in sequence */
425 u_long tcps_rcvbadsum
; /* packets received with ccksum errs */
426 u_long tcps_rcvbadoff
; /* packets received with bad offset */
427 u_long tcps_rcvmemdrop
; /* packets dropped for lack of memory */
428 u_long tcps_rcvshort
; /* packets received too short */
429 u_long tcps_rcvduppack
; /* duplicate-only packets received */
430 u_long tcps_rcvdupbyte
; /* duplicate-only bytes received */
431 u_long tcps_rcvpartduppack
; /* packets with some duplicate data */
432 u_long tcps_rcvpartdupbyte
; /* dup. bytes in part-dup. packets */
433 u_long tcps_rcvoopack
; /* out-of-order packets received */
434 u_long tcps_rcvoobyte
; /* out-of-order bytes received */
435 u_long tcps_rcvpackafterwin
; /* packets with data after window */
436 u_long tcps_rcvbyteafterwin
; /* bytes rcvd after window */
437 u_long tcps_rcvafterclose
; /* packets rcvd after "close" */
438 u_long tcps_rcvwinprobe
; /* rcvd window probe packets */
439 u_long tcps_rcvdupack
; /* rcvd duplicate acks */
440 u_long tcps_rcvacktoomuch
; /* rcvd acks for unsent data */
441 u_long tcps_rcvackpack
; /* rcvd ack packets */
442 u_long tcps_rcvackbyte
; /* bytes acked by rcvd acks */
443 u_long tcps_rcvwinupd
; /* rcvd window update packets */
444 u_long tcps_pawsdrop
; /* segments dropped due to PAWS */
445 u_long tcps_predack
; /* times hdr predict ok for acks */
446 u_long tcps_preddat
; /* times hdr predict ok for data pkts */
447 u_long tcps_pcbcachemiss
;
448 u_long tcps_cachedrtt
; /* times cached RTT in route updated */
449 u_long tcps_cachedrttvar
; /* times cached rttvar updated */
450 u_long tcps_cachedssthresh
; /* times cached ssthresh updated */
451 u_long tcps_usedrtt
; /* times RTT initialized from route */
452 u_long tcps_usedrttvar
; /* times RTTVAR initialized from rt */
453 u_long tcps_usedssthresh
; /* times ssthresh initialized from rt*/
454 u_long tcps_persistdrop
; /* timeout in persist state */
455 u_long tcps_badsyn
; /* bogus SYN, e.g. premature ACK */
456 u_long tcps_mturesent
; /* resends due to MTU discovery */
457 u_long tcps_listendrop
; /* listen queue overflows */
459 #endif /* __APPLE_API_UNSTABLE */
462 * TCB structure exported to user-land via sysctl(3).
463 * Evil hack: declare only if in_pcb.h and sys/socketvar.h have been
464 * included. Not all of our clients do.
466 #if defined(_NETINET_IN_PCB_H_) && defined(_SYS_SOCKETVAR_H_)
475 struct xsocket xt_socket
;
476 u_quad_t xt_alignment_hack
;
481 * Names for TCP sysctl objects
483 #define TCPCTL_DO_RFC1323 1 /* use RFC-1323 extensions */
484 #define TCPCTL_DO_RFC1644 2 /* use RFC-1644 extensions */
485 #define TCPCTL_MSSDFLT 3 /* MSS default */
486 #define TCPCTL_STATS 4 /* statistics (read-only) */
487 #define TCPCTL_RTTDFLT 5 /* default RTT estimate */
488 #define TCPCTL_KEEPIDLE 6 /* keepalive idle timer */
489 #define TCPCTL_KEEPINTVL 7 /* interval to send keepalives */
490 #define TCPCTL_SENDSPACE 8 /* send buffer space */
491 #define TCPCTL_RECVSPACE 9 /* receive buffer space */
492 #define TCPCTL_KEEPINIT 10 /* timeout for establishing syn */
493 #define TCPCTL_PCBLIST 11 /* list of all outstanding PCBs */
494 #define TCPCTL_DELACKTIME 12 /* time before sending delayed ACK */
495 #define TCPCTL_V6MSSDFLT 13 /* MSS default for IPv6 */
496 #define TCPCTL_MAXID 14
498 #define TCPCTL_NAMES { \
500 { "rfc1323", CTLTYPE_INT }, \
501 { "rfc1644", CTLTYPE_INT }, \
502 { "mssdflt", CTLTYPE_INT }, \
503 { "stats", CTLTYPE_STRUCT }, \
504 { "rttdflt", CTLTYPE_INT }, \
505 { "keepidle", CTLTYPE_INT }, \
506 { "keepintvl", CTLTYPE_INT }, \
507 { "sendspace", CTLTYPE_INT }, \
508 { "recvspace", CTLTYPE_INT }, \
509 { "keepinit", CTLTYPE_INT }, \
510 { "pcblist", CTLTYPE_STRUCT }, \
511 { "delacktime", CTLTYPE_INT }, \
512 { "v6mssdflt", CTLTYPE_INT }, \
515 #ifdef __APPLE_API_PRIVATE
518 SYSCTL_DECL(_net_inet_tcp
);
521 extern struct inpcbhead tcb
; /* head of queue of active tcpcb's */
522 extern struct inpcbinfo tcbinfo
;
523 extern struct tcpstat tcpstat
; /* tcp statistics */
524 extern int tcp_mssdflt
; /* XXX */
525 extern int tcp_minmss
;
526 extern int tcp_delack_enabled
;
527 extern int tcp_do_newreno
;
529 extern int ss_fltsz_local
;
531 extern u_long tcp_now
; /* for RFC 1323 timestamps */
532 extern int tcp_delack_enabled
;
536 void tcp_canceltimers
__P((struct tcpcb
*));
538 tcp_close
__P((struct tcpcb
*));
539 void tcp_ctlinput
__P((int, struct sockaddr
*, void *));
540 int tcp_ctloutput
__P((struct socket
*, struct sockopt
*));
542 tcp_drop
__P((struct tcpcb
*, int));
543 void tcp_drain
__P((void));
544 void tcp_fasttimo
__P((void));
546 tcp_gettaocache
__P((struct inpcb
*));
547 void tcp_init
__P((void));
548 void tcp_input
__P((struct mbuf
*, int));
549 void tcp_mss
__P((struct tcpcb
*, int));
550 int tcp_mssopt
__P((struct tcpcb
*));
551 void tcp_drop_syn_sent
__P((struct inpcb
*, int));
552 void tcp_mtudisc
__P((struct inpcb
*, int));
554 tcp_newtcpcb
__P((struct inpcb
*));
555 int tcp_output
__P((struct tcpcb
*));
556 void tcp_quench
__P((struct inpcb
*, int));
557 void tcp_respond
__P((struct tcpcb
*, void *,
558 struct tcphdr
*, struct mbuf
*, tcp_seq
, tcp_seq
, int));
560 tcp_rtlookup
__P((struct inpcb
*));
561 void tcp_setpersist
__P((struct tcpcb
*));
562 void tcp_slowtimo
__P((void));
564 tcp_maketemplate
__P((struct tcpcb
*));
565 void tcp_fillheaders
__P((struct tcpcb
*, void *, void *));
567 tcp_timers
__P((struct tcpcb
*, int));
568 void tcp_trace
__P((int, int, struct tcpcb
*, void *, struct tcphdr
*,
571 extern struct pr_usrreqs tcp_usrreqs
;
572 extern u_long tcp_sendspace
;
573 extern u_long tcp_recvspace
;
574 tcp_seq tcp_new_isn
__P((struct tcpcb
*));
577 #endif /* __APPLE_API_PRIVATE */
579 #endif /* _NETINET_TCP_VAR_H_ */