Allow the path MTU to grow up to the outgoing interface MTU.

MFC after: 3 days
This commit is contained in:
Michael Tuexen 2015-08-14 14:26:13 +00:00
parent e4344dae5b
commit faadc1b492
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=286781

View File

@ -1492,6 +1492,8 @@ sctp_pathmtu_timer(struct sctp_inpcb *inp,
#endif
if (mtu > next_mtu) {
net->mtu = next_mtu;
} else {
net->mtu = mtu;
}
}
}