move plugin_radius_reset from *ctl to auto* plugins
This commit is contained in:
parent
2d71fa112c
commit
620249a2af
5 changed files with 18 additions and 17 deletions
1
Changes
1
Changes
|
|
@ -2,6 +2,7 @@
|
||||||
- Fix Calling-Station-Id in RADIUS accounting records (Slobodan Tomic).
|
- Fix Calling-Station-Id in RADIUS accounting records (Slobodan Tomic).
|
||||||
- Fix RADIUS authentication on DAE responses.
|
- Fix RADIUS authentication on DAE responses.
|
||||||
- Don't send tunnel HELLO when there are pending control messages.
|
- 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
|
* Mon Sep 19 2005 Brendan O'Dea <bod@optus.net> 2.1.8
|
||||||
- Move code from signal handlers into mainloop, avoiding a race
|
- Move code from signal handlers into mainloop, avoiding a race
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
/* set up intercept based on RADIUS reply */
|
/* 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;
|
int plugin_api_version = PLUGIN_API_VERSION;
|
||||||
struct pluginfuncs *p;
|
struct pluginfuncs *p;
|
||||||
|
|
@ -36,6 +36,13 @@ int plugin_radius_response(struct param_radius_response *data)
|
||||||
return PLUGIN_RET_OK;
|
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)
|
int plugin_init(struct pluginfuncs *funcs)
|
||||||
{
|
{
|
||||||
return ((p = funcs)) ? 1 : 0;
|
return ((p = funcs)) ? 1 : 0;
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@
|
||||||
* throttle=no
|
* 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;
|
int plugin_api_version = PLUGIN_API_VERSION;
|
||||||
struct pluginfuncs *p;
|
struct pluginfuncs *p;
|
||||||
|
|
@ -110,6 +110,12 @@ int plugin_radius_response(struct param_radius_response *data)
|
||||||
return PLUGIN_RET_OK;
|
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)
|
int plugin_init(struct pluginfuncs *funcs)
|
||||||
{
|
{
|
||||||
return ((p = funcs)) ? 1 : 0;
|
return ((p = funcs)) ? 1 : 0;
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
/* snoop control */
|
/* 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;
|
int plugin_api_version = PLUGIN_API_VERSION;
|
||||||
static struct pluginfuncs *p = 0;
|
static struct pluginfuncs *p = 0;
|
||||||
|
|
@ -116,13 +116,6 @@ int plugin_control(struct param_control *data)
|
||||||
return PLUGIN_RET_STOP;
|
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)
|
int plugin_init(struct pluginfuncs *funcs)
|
||||||
{
|
{
|
||||||
return ((p = funcs)) ? 1 : 0;
|
return ((p = funcs)) ? 1 : 0;
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
/* throttle control */
|
/* 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;
|
int plugin_api_version = PLUGIN_API_VERSION;
|
||||||
static struct pluginfuncs *p = 0;
|
static struct pluginfuncs *p = 0;
|
||||||
|
|
@ -129,12 +129,6 @@ int plugin_control(struct param_control *data)
|
||||||
return PLUGIN_RET_STOP;
|
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)
|
int plugin_init(struct pluginfuncs *funcs)
|
||||||
{
|
{
|
||||||
return ((p = funcs)) ? 1 : 0;
|
return ((p = funcs)) ? 1 : 0;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue