summaryrefslogtreecommitdiff
path: root/accel-pppd/ctrl/l2tp/l2tp.c
diff options
context:
space:
mode:
Diffstat (limited to 'accel-pppd/ctrl/l2tp/l2tp.c')
-rw-r--r--accel-pppd/ctrl/l2tp/l2tp.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/accel-pppd/ctrl/l2tp/l2tp.c b/accel-pppd/ctrl/l2tp/l2tp.c
index 50523cfa..d8a98f8d 100644
--- a/accel-pppd/ctrl/l2tp/l2tp.c
+++ b/accel-pppd/ctrl/l2tp/l2tp.c
@@ -47,6 +47,7 @@
#define STATE_CLOSE 0
int conf_verbose = 0;
+int conf_avp_permissive = 0;
static int conf_timeout = 60;
static int conf_rtimeout = 5;
static int conf_retransmit = 5;
@@ -1157,6 +1158,10 @@ static void load_config(void)
if (opt && atoi(opt) > 0)
conf_verbose = 1;
+ opt = conf_get_opt("l2tp", "avp_permissive");
+ if (opt && atoi(opt) > 0)
+ conf_avp_permissive = 1;
+
opt = conf_get_opt("l2tp", "hello-interval");
if (opt && atoi(opt) > 0)
conf_hello_interval = atoi(opt);