From aaff9927f686d290f03d8987059fc228e137218a Mon Sep 17 00:00:00 2001 From: Hajimu UMEMOTO Date: Tue, 24 Feb 2004 15:40:55 +0000 Subject: [PATCH] in icmp6_mtudisc_update(), use ND link mtu to detect if the path MTU should be updated. Helped by: andre --- sys/netinet6/icmp6.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/netinet6/icmp6.c b/sys/netinet6/icmp6.c index 5ef4fffcd37d..8ac756a07782 100644 --- a/sys/netinet6/icmp6.c +++ b/sys/netinet6/icmp6.c @@ -475,6 +475,8 @@ icmp6_input(mp, offp, proto) if (code != 0) goto badcode; + /* validation is made in icmp6_mtudisc_update */ + code = PRC_MSGSIZE; /* @@ -1140,7 +1142,7 @@ icmp6_mtudisc_update(ip6cp, validated) htons(m->m_pkthdr.rcvif->if_index); } - if (mtu >= IPV6_MMTU) { + if (mtu < tcp_maxmtu6(&inc)) { tcp_hc_updatemtu(&inc, mtu); icmp6stat.icp6s_pmtuchg++; }