diff options
author | bde <bde@FreeBSD.org> | 1995-03-16 18:17:34 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-03-16 18:17:34 +0000 |
commit | 289f11acb49b6dbb3081e09bf94a86f008f55814 (patch) | |
tree | e4952f18ac85eccbbd3d9b0f010098732d07fe6d /sys/netinet/tcp_var.h | |
parent | 4c4945abee9eabe3a2be340ba973ae861c21a3c6 (diff) | |
download | FreeBSD-src-289f11acb49b6dbb3081e09bf94a86f008f55814.zip FreeBSD-src-289f11acb49b6dbb3081e09bf94a86f008f55814.tar.gz |
Add and move declarations to fix all of the warnings from `gcc -Wimplicit'
(except in netccitt, netiso and netns) and most of the warnings from
`gcc -Wnested-externs'. Fix all the bugs found. There were no serious
ones.
Diffstat (limited to 'sys/netinet/tcp_var.h')
-rw-r--r-- | sys/netinet/tcp_var.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h index 460a370..bd4705e 100644 --- a/sys/netinet/tcp_var.h +++ b/sys/netinet/tcp_var.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_var.h 8.3 (Berkeley) 4/10/94 - * $Id: tcp_var.h,v 1.7 1995/02/14 02:35:19 wollman Exp $ + * $Id: tcp_var.h,v 1.9 1995/02/16 00:55:44 wollman Exp $ */ #ifndef _NETINET_TCP_VAR_H_ @@ -309,7 +309,11 @@ struct tcpstat { #ifdef KERNEL extern struct inpcb tcb; /* head of queue of active tcpcb's */ extern struct tcpstat tcpstat; /* tcp statistics */ +extern int tcp_do_rfc1323; /* XXX */ +extern int tcp_do_rfc1644; /* XXX */ +extern int tcp_mssdflt; /* XXX */ extern u_long tcp_now; /* for RFC 1323 timestamps */ +extern int tcp_rttdflt; /* XXX */ int tcp_attach __P((struct socket *)); void tcp_canceltimers __P((struct tcpcb *)); |