X-Git-Url: http://git.sameswireless.fr/l2tpns.git/blobdiff_plain/11996ba4147678c1d400dcc16e33d83a9a3ede9c..caa9662496578822d24926b927365639c936c761:/l2tpns.c diff --git a/l2tpns.c b/l2tpns.c index 71d5857..850cd76 100644 --- a/l2tpns.c +++ b/l2tpns.c @@ -187,7 +187,7 @@ config_descriptt config_values[] = { CONFIG("bind_address_remotelns", bind_address_remotelns, IPv4), CONFIG("bind_portremotelns", bind_portremotelns, SHORT), #endif - CONFIG("pppoe_if_name", pppoe_if_name, STRING), + CONFIG("pppoe_if_to_bind", pppoe_if_to_bind, STRING), CONFIG("pppoe_service_name", pppoe_service_name, STRING), CONFIG("pppoe_ac_name", pppoe_ac_name, STRING), { NULL, 0, 0, 0 }, @@ -5121,10 +5121,10 @@ int main(int argc, char *argv[]) inittun(); LOG(1, 0, 0, "Set up on interface %s\n", config->tundevicename); - if (*config->pppoe_if_name) + if (*config->pppoe_if_to_bind) { init_pppoe(); - LOG(1, 0, 0, "Set up on pppoe interface %s\n", config->pppoe_if_name); + LOG(1, 0, 0, "Set up on pppoe interface %s\n", config->pppoe_if_to_bind); } initudp(); initrad(); @@ -5548,8 +5548,7 @@ int sessionsetup(sessionidt s, tunnelidt t) if (ip == session[i].ip) { - sessionkill(i, "Duplicate IP address"); - cluster_listinvert_session(s, i); + sessionshutdown(i, "Duplicate IP address", CDN_ADMIN_DISC, TERM_ADMIN_RESET); // close radius/routes, etc. continue; } @@ -5570,7 +5569,7 @@ int sessionsetup(sessionidt s, tunnelidt t) // Drop the new session in case of duplicate sessionss, not the old one. if (!strcasecmp(user, session[i].user)) - sessionkill(i, "Duplicate session for users"); + sessionshutdown(i, "Duplicate session for users", CDN_ADMIN_DISC, TERM_ADMIN_RESET); // close radius/routes, etc. } }