X-Git-Url: http://git.sameswireless.fr/l2tpns.git/blobdiff_plain/eb6906a28c887872d459890ad05cbf8e07c97b75..895d679e8ea7f092d6710dfa16bea8aec211d881:/throttlectl.c diff --git a/throttlectl.c b/throttlectl.c index cf6508e..7aca35e 100644 --- a/throttlectl.c +++ b/throttlectl.c @@ -5,7 +5,7 @@ /* throttle control */ -char const *cvs_id = "$Id: throttlectl.c,v 1.1 2004-11-17 15:08:19 bodea Exp $"; +char const *cvs_id = "$Id: throttlectl.c,v 1.7 2005-06-28 14:48:28 bodea Exp $"; int plugin_api_version = PLUGIN_API_VERSION; static struct pluginfuncs *p = 0; @@ -16,23 +16,6 @@ char *plugin_control_help[] = { 0 }; -static int iam_master = 0; - -int plugin_init(struct pluginfuncs *funcs) -{ - if (!funcs) - return 0; - - p = funcs; - return 1; -} - -int plugin_become_master(void) -{ - iam_master = 1; - return PLUGIN_RET_OK; -} - int plugin_control(struct param_control *data) { sessionidt session; @@ -49,18 +32,14 @@ int plugin_control(struct param_control *data) && strcmp(data->argv[0], "unthrottle")) return PLUGIN_RET_OK; // not for us - flag = data->argv[0][0] != 'g'; + if (!data->iam_master) + return PLUGIN_RET_NOTMASTER; - if (!iam_master) - { - data->response = NSCTL_RES_ERR; - data->additional = "must be run on the cluster master"; - return PLUGIN_RET_STOP; - } + flag = data->argv[0][0] == 't'; if (flag) { - if (data->argc < 2 || data->argc > 4) + if (data->argc < 2 || data->argc > 6) { data->response = NSCTL_RES_ERR; data->additional = "requires username or session id and optional rate(s)"; @@ -110,11 +89,11 @@ int plugin_control(struct param_control *data) int len = strlen(data->argv[i]); if (!strncmp(data->argv[i], "in", len)) { - rate_in = atoi(argv[i+1]); + rate_in = atoi(data->argv[i+1]); } else if (!strncmp(data->argv[i], "out", len)) { - rate_out = atoi(argv[i+1]); + rate_out = atoi(data->argv[i+1]); } else { @@ -142,10 +121,21 @@ int plugin_control(struct param_control *data) } p->throttle(session, rate_in, rate_out); - p->sesssion_changed(session); + p->session_changed(session); data->response = NSCTL_RES_OK; data->additional = 0; 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; +}