move plugin_radius_reset from *ctl to auto* plugins
authorbodea <bodea>
Tue, 11 Oct 2005 07:59:09 +0000 (07:59 +0000)
committerbodea <bodea>
Tue, 11 Oct 2005 07:59:09 +0000 (07:59 +0000)
Changes
autosnoop.c
autothrottle.c
snoopctl.c
throttlectl.c

diff --git a/Changes b/Changes
index e245c30..dfeabaa 100644 (file)
--- 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 <bod@optus.net> 2.1.8
 - Move code from signal handlers into mainloop, avoiding a race
index 9ed5b1f..4ac2171 100644 (file)
@@ -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;
index 1a37809..8f81776 100644 (file)
@@ -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;
index 5fabe24..0bb46da 100644 (file)
@@ -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;
index 2e2c5c7..f0106f8 100644 (file)
@@ -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;