add Cisco-AVPairs to RADIUS accounting records via plugin_radius_account

This commit is contained in:
bodea 2005-10-11 09:04:53 +00:00
parent 5d659af7fd
commit f6b56a0f4d
12 changed files with 668 additions and 584 deletions

View file

@ -4,34 +4,38 @@
/* fudge up session rx speed if not set */
char const *cvs_id = "$Id: setrxspeed.c,v 1.3 2004/11/17 08:23:35 bodea Exp $";
char const *cvs_id = "$Id: setrxspeed.c,v 1.4 2005/10/11 09:04:53 bodea Exp $";
int plugin_api_version = PLUGIN_API_VERSION;
static struct pluginfuncs *p = 0;
static struct pluginfuncs *f = 0;
int plugin_post_auth(struct param_post_auth *data)
{
if (!data->auth_allowed) return PLUGIN_RET_OK;
if (!data->auth_allowed)
return PLUGIN_RET_OK;
if (!data->s->rx_connect_speed)
{
switch (data->s->tx_connect_speed)
{
case 256 :
data->s->rx_connect_speed = 64;
break;
case 512 :
data->s->rx_connect_speed = 128;
break;
case 1500 :
data->s->rx_connect_speed = 256;
break;
}
}
return PLUGIN_RET_OK;
if (data->s->rx_connect_speed)
return PLUGIN_RET_OK;
switch (data->s->tx_connect_speed)
{
case 256:
data->s->rx_connect_speed = 64;
break;
case 512:
data->s->rx_connect_speed = 128;
break;
case 1500:
data->s->rx_connect_speed = 256;
break;
}
return PLUGIN_RET_OK;
}
int plugin_init(struct pluginfuncs *funcs)
{
return ((p = funcs)) ? 1 : 0;
return ((f = funcs)) ? 1 : 0;
}