diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1998-07-13 11:09:52 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1998-07-13 11:09:52 +0000 |
| commit | 07a4df4fee54e784d8886ae2235362efa7a96c75 (patch) | |
| tree | cf5885651cd1b480fdcbc46e138eae7a187f9cc6 /sys/netinet | |
| parent | 99c819ef77f0737c33b5cc6f7f7fae26a979a88f (diff) | |
Notes
Diffstat (limited to 'sys/netinet')
| -rw-r--r-- | sys/netinet/tcp.h | 6 | ||||
| -rw-r--r-- | sys/netinet/tcp_var.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/netinet/tcp.h b/sys/netinet/tcp.h index 253ddb33db25..89624e30e278 100644 --- a/sys/netinet/tcp.h +++ b/sys/netinet/tcp.h @@ -31,14 +31,14 @@ * SUCH DAMAGE. * * @(#)tcp.h 8.1 (Berkeley) 6/10/93 - * $Id: tcp.h,v 1.8 1997/02/22 09:41:37 peter Exp $ + * $Id: tcp.h,v 1.9 1998/06/08 09:47:42 bde Exp $ */ #ifndef _NETINET_TCP_H_ #define _NETINET_TCP_H_ -typedef u_long tcp_seq; -typedef u_long tcp_cc; /* connection count per rfc1644 */ +typedef u_int32_t tcp_seq; +typedef u_int32_t tcp_cc; /* connection count per rfc1644 */ /* * TCP header. diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h index 39b87babf9d7..48b00b7dbac9 100644 --- a/sys/netinet/tcp_var.h +++ b/sys/netinet/tcp_var.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_var.h 8.4 (Berkeley) 5/24/95 - * $Id: tcp_var.h,v 1.44 1998/05/15 20:11:35 wollman Exp $ + * $Id: tcp_var.h,v 1.45 1998/06/27 07:30:45 jhay Exp $ */ #ifndef _NETINET_TCP_VAR_H_ @@ -362,7 +362,7 @@ struct tcpcb * int tcp_output __P((struct tcpcb *)); void tcp_quench __P((struct inpcb *, int)); void tcp_respond __P((struct tcpcb *, - struct tcpiphdr *, struct mbuf *, u_long, u_long, int)); + struct tcpiphdr *, struct mbuf *, tcp_seq, tcp_seq, int)); struct rtentry * tcp_rtlookup __P((struct inpcb *)); void tcp_setpersist __P((struct tcpcb *)); |
