This commit is contained in:
Hiren Panchasara 2014-07-02 22:04:14 +00:00
parent 97ef768914
commit cc412412db
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=268183

View File

@ -3472,8 +3472,8 @@ tcp_mss_update(struct tcpcb *tp, int offer, int mtuoffer,
bcopy(&metrics, metricptr, sizeof(struct hc_metrics_lite));
/*
* If there's a discovered mtu int tcp hostcache, use it
* else, use the link mtu.
* If there's a discovered mtu in tcp hostcache, use it.
* Else, use the link mtu.
*/
if (metrics.rmx_mtu)
mss = min(metrics.rmx_mtu, maxmtu) - min_protoh;