projects
/
l2tpns.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Update changelog (LAC functionnality)
[l2tpns.git]
/
ppp.c
diff --git
a/ppp.c
b/ppp.c
index
518f6ec
..
236188e
100644
(file)
--- a/
ppp.c
+++ b/
ppp.c
@@
-1,7
+1,5
@@
// L2TPNS PPP Stuff
// L2TPNS PPP Stuff
-//#define LAC
-
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
@@
-107,9
+105,9
@@
void processpap(sessionidt s, tunnelidt t, uint8_t *p, uint16_t l)
}
#ifdef LAC
}
#ifdef LAC
- if (
forwardto
lns(s, user))
+ if (
(!config->disable_lac_func) && lac_conf_forwardtoremote
lns(s, user))
{
{
- LOG(3, s, t, "Forwarding login for %s to other LNS\n", user);
+ // Creating a tunnel/session has been started
return;
}
#endif
return;
}
#endif
@@
-266,12
+264,11
@@
void processchap(sessionidt s, tunnelidt t, uint8_t *p, uint16_t l)
memcpy(packet.username, p, l);
#ifdef LAC
memcpy(packet.username, p, l);
#ifdef LAC
- if (
forwardto
lns(s, packet.username))
+ if (
(!config->disable_lac_func) && lac_conf_forwardtoremote
lns(s, packet.username))
{
{
- LOG(3, s, t, "Forwarding login for %s to other LNS\n", packet.username);
-
free(packet.username);
free(packet.password);
free(packet.username);
free(packet.password);
+ // Creating a tunnel/session has been started
return;
}
#endif
return;
}
#endif
@@
-428,7
+425,7
@@
void lcp_open(sessionidt s, tunnelidt t)
}
}
}
}
-
static
void lcp_restart(sessionidt s)
+void lcp_restart(sessionidt s)
{
session[s].ppp.phase = Establish;
// This-Layer-Down
{
session[s].ppp.phase = Establish;
// This-Layer-Down
@@
-561,7
+558,7
@@
void processlcp(sessionidt s, tunnelidt t, uint8_t *p, uint16_t l)
if (session[s].die) // going down...
return;
if (session[s].die) // going down...
return;
- LOG((
*p == EchoReq || *p == EchoReply) ? 4 : 3
, s, t,
+ LOG((
(*p == EchoReq || *p == EchoReply) ? 4 : 3)
, s, t,
"LCP: recv %s\n", ppp_code(*p));
if (config->debug > 3) dumplcp(p, l);
"LCP: recv %s\n", ppp_code(*p));
if (config->debug > 3) dumplcp(p, l);