diff options
author | 2000-12-11 08:04:55 +0000 | |
---|---|---|
committer | 2000-12-11 08:04:55 +0000 | |
commit | 4d113176fe2f0c74192d0c45f9bcfc3928b1ed00 (patch) | |
tree | b8a8ace41f896ebcb8077f4a18a1c4390b08c2c5 /sys/netinet/tcp_input.c | |
parent | do not touch region after free (diff) | |
download | wireguard-openbsd-4d113176fe2f0c74192d0c45f9bcfc3928b1ed00.tar.xz wireguard-openbsd-4d113176fe2f0c74192d0c45f9bcfc3928b1ed00.zip |
nuke #ifdef TCP6 (no longer supported).
validate ICMPv6 too big messages (pmtud) based on pcb. we accept
certain amount of non-validated ones, as IPv6 mandates ICMPv6 (so even for
traffic from unconnected pcb, we need pmtud).
sync with kame
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 f45766afc53..8fc588e947f 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.79 2000/10/14 01:04:10 itojun Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.80 2000/12/11 08:04:55 itojun Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -319,7 +319,7 @@ done: splx(s); } -#if defined(INET6) && !defined(TCP6) +#ifdef INET6 int tcp6_input(mp, offp, proto) struct mbuf **mp; |