diff options
author | 2013-06-01 16:22:05 +0000 | |
---|---|---|
committer | 2013-06-01 16:22:05 +0000 | |
commit | 4da85d9a91b8ddbd924cf31ea5478a90657822be (patch) | |
tree | 3026fb4d109de962f0847222cf5e18a21c599775 /sys/netinet/tcp_subr.c | |
parent | update to nginx-1.4.1 and enable the SPDY module by default (diff) | |
download | wireguard-openbsd-4da85d9a91b8ddbd924cf31ea5478a90657822be.tar.xz wireguard-openbsd-4da85d9a91b8ddbd924cf31ea5478a90657822be.zip |
Pass the routing domain to IPv6 pr_ctlinput() like in IPv4.
OK claudio@
Diffstat (limited to 'sys/netinet/tcp_subr.c')
-rw-r--r-- | sys/netinet/tcp_subr.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c index 508a57ee1b3..ff9249bb62e 100644 --- a/sys/netinet/tcp_subr.c +++ b/sys/netinet/tcp_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_subr.c,v 1.119 2013/05/31 13:15:53 bluhm Exp $ */ +/* $OpenBSD: tcp_subr.c,v 1.120 2013/06/01 16:22:05 bluhm Exp $ */ /* $NetBSD: tcp_subr.c,v 1.22 1996/02/13 23:44:00 christos Exp $ */ /* @@ -653,10 +653,7 @@ tcp_notify(inp, error) #ifdef INET6 void -tcp6_ctlinput(cmd, sa, d) - int cmd; - struct sockaddr *sa; - void *d; +tcp6_ctlinput(int cmd, struct sockaddr *sa, u_int rdomain, void *d) { struct tcphdr th; struct tcpcb *tp; |