diff options
author | ume <ume@FreeBSD.org> | 2004-02-13 14:50:01 +0000 |
---|---|---|
committer | ume <ume@FreeBSD.org> | 2004-02-13 14:50:01 +0000 |
commit | f35565e63f9461f81b17f432764b5ca25e02856c (patch) | |
tree | f952cbefcf8a041f874d6e06257be2836aede356 /sys/netinet/tcp_subr.c | |
parent | 326680c1492004585de0fab05ad78cb474e6f539 (diff) | |
download | FreeBSD-src-f35565e63f9461f81b17f432764b5ca25e02856c.zip FreeBSD-src-f35565e63f9461f81b17f432764b5ca25e02856c.tar.gz |
supported IPV6_RECVPATHMTU socket option.
Obtained from: KAME
Diffstat (limited to 'sys/netinet/tcp_subr.c')
-rw-r--r-- | sys/netinet/tcp_subr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c index c3109c7..c21e1fe 100644 --- a/sys/netinet/tcp_subr.c +++ b/sys/netinet/tcp_subr.c @@ -1192,7 +1192,7 @@ tcp6_ctlinput(cmd, sa, d) in6_pcbnotify(&tcb, sa, th.th_dport, (struct sockaddr *)ip6cp->ip6c_src, - th.th_sport, cmd, notify); + th.th_sport, cmd, NULL, notify); inc.inc_fport = th.th_dport; inc.inc_lport = th.th_sport; @@ -1202,7 +1202,7 @@ tcp6_ctlinput(cmd, sa, d) syncache_unreach(&inc, &th); } else in6_pcbnotify(&tcb, sa, 0, (const struct sockaddr *)sa6_src, - 0, cmd, notify); + 0, cmd, NULL, notify); } #endif /* INET6 */ |