// L2TPNS PPP Stuff
-//#define LAC
-
#include <stdio.h>
#include <string.h>
#include <unistd.h>
}
#ifdef LAC
- if (forwardtolns(s, user))
+ if ((!config->disable_lac_func) && lac_conf_forwardtoremotelns(s, user))
{
- LOG(3, s, t, "Forwarding login for %s to other LNS\n", user);
+ // Creating a tunnel/session has been started
return;
}
#endif
memcpy(packet.username, p, l);
#ifdef LAC
- if (forwardtolns(s, packet.username))
+ if ((!config->disable_lac_func) && lac_conf_forwardtoremotelns(s, packet.username))
{
- LOG(3, s, t, "Forwarding login for %s to other LNS\n", packet.username);
-
free(packet.username);
free(packet.password);
+ // Creating a tunnel/session has been started
return;
}
#endif
}
}
-static void lcp_restart(sessionidt s)
+void lcp_restart(sessionidt s)
{
session[s].ppp.phase = Establish;
// This-Layer-Down
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);