diff options
author | 2007-06-01 00:52:38 +0000 | |
---|---|---|
committer | 2007-06-01 00:52:38 +0000 | |
commit | 2e53853b84893de2583504e2e7b67028f088563f (patch) | |
tree | 7fb273b1f9f6816a2aca5b90040466d2d8865fba /sys/netinet/tcp_input.c | |
parent | start new sentence w/ capital letter; (diff) | |
download | wireguard-openbsd-2e53853b84893de2583504e2e7b67028f088563f.tar.xz wireguard-openbsd-2e53853b84893de2583504e2e7b67028f088563f.zip |
apply the "skip ipsec if there are no flows" speedup diff to IPv6 too.
we need a pointer to the inpcb to decide, which was not previously
passed to ip6_output, so this diff is a little bigger.
from itojun, ok ryan
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r-- | sys/netinet/tcp_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 1b5fdcebbc3..b2716805f7c 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.204 2007/05/27 21:37:53 deraadt Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.205 2007/06/01 00:52:38 henning Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -4376,7 +4376,7 @@ syn_cache_respond(sc, m) ro->ro_rt ? ro->ro_rt->rt_ifp : NULL); error = ip6_output(m, NULL /*XXX*/, (struct route_in6 *)ro, 0, - (struct ip6_moptions *)0, NULL); + (struct ip6_moptions *)0, NULL, NULL); break; #endif default: |