aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/ppp/lcp.c
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>2001-07-30 17:04:39 +0000
committerBrian Somers <brian@FreeBSD.org>2001-07-30 17:04:39 +0000
commit5a0827311ef33e1eb1c0e1505c68e204ca05b4b9 (patch)
treeb3d5a97b275b83e6b5e868433a6ee6192348b0ee /usr.sbin/ppp/lcp.c
parentcd2b9510b724dcc593a47d6a2fee0f2951f698d8 (diff)
downloadsrc-5a0827311ef33e1eb1c0e1505c68e204ca05b4b9.tar.gz
src-5a0827311ef33e1eb1c0e1505c68e204ca05b4b9.zip
If the peer REJects our MRU REQ, stop REQing it -- *EVEN* if we're
doing PPPoE and the default MRU is therefore too big. When negotiating with win2k, we ask for MRU 1492 and the win2k box NAKs us saying ``MRU 1492''. This doesn't make sense to me. When we continue to request MRU 1492, the win2k box eventually REJs our MRU. This fix allows negotiations to continue at that point, bringing the link up and potentially allowing the win2k box to send us frames that are too large. AFAICT this is better than failing to bring the link up.... probably ! I have no idea how to do the equivalent of ``route get'' or ``ifconfig -a'' under win2k, so I can't tell what MTU it actually ends up using. I believe the bug is in win2k (it's certainly mis-negotiating). I'll MFC given the release engineers permission as code freeze begins on August 1. PR: 29277 MFC after: 3 days
Notes
Notes: svn path=/head/; revision=80655
Diffstat (limited to 'usr.sbin/ppp/lcp.c')
-rw-r--r--usr.sbin/ppp/lcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/ppp/lcp.c b/usr.sbin/ppp/lcp.c
index e592e4e2b5a7..5bdd61dab047 100644
--- a/usr.sbin/ppp/lcp.c
+++ b/usr.sbin/ppp/lcp.c
@@ -408,7 +408,7 @@ LcpSendConfigReq(struct fsm *fp)
fp->link->name, lcp->want_mru, maxmru);
lcp->want_mru = maxmru;
}
- if (!REJECTED(lcp, TY_MRU) || lcp->want_mru < DEF_MRU) {
+ if (!REJECTED(lcp, TY_MRU)) {
ua_htons(&lcp->want_mru, o->data);
INC_LCP_OPT(TY_MRU, 4, o);
}