From: bodea Date: Tue, 11 Oct 2005 07:59:09 +0000 (+0000) Subject: move plugin_radius_reset from *ctl to auto* plugins X-Git-Tag: release_2_1_9~1 X-Git-Url: http://git.sameswireless.fr/l2tpns.git/commitdiff_plain/5d659af7fda3ce995ab61ca4cd296fbdddd6f5e4 move plugin_radius_reset from *ctl to auto* plugins --- diff --git a/Changes b/Changes index e245c30..dfeabaa 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,7 @@ - Fix Calling-Station-Id in RADIUS accounting records (Slobodan Tomic). - Fix RADIUS authentication on DAE responses. - Don't send tunnel HELLO when there are pending control messages. +- Move plugin_radius_reset from *ctl to auto* plugins. * Mon Sep 19 2005 Brendan O'Dea 2.1.8 - Move code from signal handlers into mainloop, avoiding a race diff --git a/autosnoop.c b/autosnoop.c index 9ed5b1f..4ac2171 100644 --- a/autosnoop.c +++ b/autosnoop.c @@ -4,7 +4,7 @@ /* set up intercept based on RADIUS reply */ -char const *cvs_id = "$Id: autosnoop.c,v 1.10 2004/11/30 05:49:47 bodea Exp $"; +char const *cvs_id = "$Id: autosnoop.c,v 1.11 2005/10/11 07:59:09 bodea Exp $"; int plugin_api_version = PLUGIN_API_VERSION; struct pluginfuncs *p; @@ -36,6 +36,13 @@ int plugin_radius_response(struct param_radius_response *data) return PLUGIN_RET_OK; } +int plugin_radius_reset(struct param_radius_reset *data) +{ + data->s->snoop_ip = 0; + data->s->snoop_port = 0; + return PLUGIN_RET_OK; +} + int plugin_init(struct pluginfuncs *funcs) { return ((p = funcs)) ? 1 : 0; diff --git a/autothrottle.c b/autothrottle.c index 1a37809..8f81776 100644 --- a/autothrottle.c +++ b/autothrottle.c @@ -13,7 +13,7 @@ * throttle=no */ -char const *cvs_id = "$Id: autothrottle.c,v 1.14 2005/05/13 05:28:16 bodea Exp $"; +char const *cvs_id = "$Id: autothrottle.c,v 1.15 2005/10/11 07:59:09 bodea Exp $"; int plugin_api_version = PLUGIN_API_VERSION; struct pluginfuncs *p; @@ -110,6 +110,12 @@ int plugin_radius_response(struct param_radius_response *data) return PLUGIN_RET_OK; } +int plugin_radius_reset(struct param_radius_reset *data) +{ + p->throttle(p->get_id_by_session(data->s), 0, 0); + return PLUGIN_RET_OK; +} + int plugin_init(struct pluginfuncs *funcs) { return ((p = funcs)) ? 1 : 0; diff --git a/snoopctl.c b/snoopctl.c index 5fabe24..0bb46da 100644 --- a/snoopctl.c +++ b/snoopctl.c @@ -5,7 +5,7 @@ /* snoop control */ -char const *cvs_id = "$Id: snoopctl.c,v 1.5 2005/06/28 14:48:28 bodea Exp $"; +char const *cvs_id = "$Id: snoopctl.c,v 1.6 2005/10/11 07:59:09 bodea Exp $"; int plugin_api_version = PLUGIN_API_VERSION; static struct pluginfuncs *p = 0; @@ -116,13 +116,6 @@ int plugin_control(struct param_control *data) return PLUGIN_RET_STOP; } -int plugin_radius_reset(struct param_radius_reset *data) -{ - data->s->snoop_ip = 0; - data->s->snoop_port = 0; - return PLUGIN_RET_OK; -} - int plugin_init(struct pluginfuncs *funcs) { return ((p = funcs)) ? 1 : 0; diff --git a/throttlectl.c b/throttlectl.c index 2e2c5c7..f0106f8 100644 --- a/throttlectl.c +++ b/throttlectl.c @@ -5,7 +5,7 @@ /* throttle control */ -char const *cvs_id = "$Id: throttlectl.c,v 1.7 2005/06/28 14:48:28 bodea Exp $"; +char const *cvs_id = "$Id: throttlectl.c,v 1.8 2005/10/11 07:59:09 bodea Exp $"; int plugin_api_version = PLUGIN_API_VERSION; static struct pluginfuncs *p = 0; @@ -129,12 +129,6 @@ int plugin_control(struct param_control *data) return PLUGIN_RET_STOP; } -int plugin_radius_reset(struct param_radius_reset *data) -{ - p->throttle(p->get_id_by_session(data->s), 0, 0); - return PLUGIN_RET_OK; -} - int plugin_init(struct pluginfuncs *funcs) { return ((p = funcs)) ? 1 : 0;