diff options
author | 2000-12-21 00:54:10 +0000 | |
---|---|---|
committer | 2000-12-21 00:54:10 +0000 | |
commit | 07729d231021b36c2406cb6bc9971f99471f3d97 (patch) | |
tree | 3105d3a5464c44a92a9e7ad9276b923b97169e9a /sys/netinet/tcp_subr.c | |
parent | more careful euid killing (diff) | |
download | wireguard-openbsd-07729d231021b36c2406cb6bc9971f99471f3d97.tar.xz wireguard-openbsd-07729d231021b36c2406cb6bc9971f99471f3d97.zip |
correct ipv6 path mtu discovery.
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 9ab06da405c..3309968706e 100644 --- a/sys/netinet/tcp_subr.c +++ b/sys/netinet/tcp_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_subr.c,v 1.37 2000/12/13 09:47:08 provos Exp $ */ +/* $OpenBSD: tcp_subr.c,v 1.38 2000/12/21 00:54:10 itojun Exp $ */ /* $NetBSD: tcp_subr.c,v 1.22 1996/02/13 23:44:00 christos Exp $ */ /* @@ -976,7 +976,7 @@ tcp6_mtudisc_callback(faddr) sin6.sin6_len = sizeof(struct sockaddr_in6); sin6.sin6_addr = *faddr; (void) in6_pcbnotify(&tcbtable, (struct sockaddr *)&sin6, 0, - &zeroin6_addr, 0, EMSGSIZE, tcp_mtudisc); + &zeroin6_addr, 0, PRC_MSGSIZE, tcp_mtudisc); } #endif /* INET6 */ |