diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2017-01-25 17:34:32 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2017-01-25 17:34:32 +0000 |
commit | 759669db69ca341876a0af1e0abc98af49c4a3d8 (patch) | |
tree | be8139d53bbf33aefbe757800ac18ac4137c34b6 /sys/netinet/tcp_var.h | |
parent | fb34f730610f368d97d9636e7f5714656e624c8c (diff) |
Since raw_input() and route_input() are gone from pr_input, we can
make the variable parameters of the protocol input functions fixed.
Also add the proto to make it similar to IPv6.
OK mpi@ guenther@ millert@
Diffstat (limited to 'sys/netinet/tcp_var.h')
-rw-r--r-- | sys/netinet/tcp_var.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h index 32f7913dc7c..f1f7c269328 100644 --- a/sys/netinet/tcp_var.h +++ b/sys/netinet/tcp_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_var.h,v 1.117 2016/11/16 08:50:33 mpi Exp $ */ +/* $OpenBSD: tcp_var.h,v 1.118 2017/01/25 17:34:31 bluhm Exp $ */ /* $NetBSD: tcp_var.h,v 1.17 1996/02/13 23:44:24 christos Exp $ */ /* @@ -613,7 +613,7 @@ void tcp_init(void); #ifdef INET6 int tcp6_input(struct mbuf **, int *, int); #endif -void tcp_input(struct mbuf *, ...); +void tcp_input(struct mbuf *, int, int); int tcp_mss(struct tcpcb *, int); void tcp_mss_update(struct tcpcb *); u_int tcp_hdrsz(struct tcpcb *); |