projects
/
l2tpns.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
4d3e657
)
Fix processing of ConfigNak responses to LCP.
author
Jonathan McDowell
<noodles@earth.li>
Tue, 10 May 2005 10:54:34 +0000
(10:54 +0000)
committer
Jonathan McDowell
<noodles@earth.li>
Tue, 10 May 2005 10:54:34 +0000
(10:54 +0000)
ppp.c
patch
|
blob
|
history
diff --git
a/ppp.c
b/ppp.c
index
a2a67ea
..
79b972d
100644
(file)
--- a/
ppp.c
+++ b/
ppp.c
@@
-1,6
+1,6
@@
// L2TPNS PPP Stuff
// L2TPNS PPP Stuff
-char const *cvs_id_ppp = "$Id: ppp.c,v 1.5
8 2005-05-10 09:57:50 bodea
Exp $";
+char const *cvs_id_ppp = "$Id: ppp.c,v 1.5
9 2005-05-10 10:54:34 jonmcd
Exp $";
#include <stdio.h>
#include <string.h>
#include <stdio.h>
#include <string.h>
@@
-605,6
+605,8
@@
void processlcp(tunnelidt t, sessionidt s, uint8_t *p, uint16_t l)
LOG(2, s, t, " Remote NAKed LCP type %u?\n", type);
break;
}
LOG(2, s, t, " Remote NAKed LCP type %u?\n", type);
break;
}
+ x -= length;
+ o += length;
}
if (!authtype)
}
if (!authtype)
@@
-1327,7
+1329,7
@@
void sendlcp(tunnelidt t, sessionidt s, int authtype)
return;
LOG(4, s, t, "Sending LCP ConfigReq for %s\n",
return;
LOG(4, s, t, "Sending LCP ConfigReq for %s\n",
-
config->radius_authprefer
== AUTHCHAP ? "CHAP" : "PAP");
+
authtype
== AUTHCHAP ? "CHAP" : "PAP");
if (!session[s].mru)
session[s].mru = DEFAULT_MRU;
if (!session[s].mru)
session[s].mru = DEFAULT_MRU;