31 lines
657 B
C
31 lines
657 B
C
#include <string.h>
|
|
#include "l2tpns.h"
|
|
#include "plugin.h"
|
|
|
|
/* strip domain part of username before sending RADIUS requests */
|
|
|
|
char const *cvs_id = "$Id: stripdomain.c,v 1.7 2004-11-29 02:17:18 bodea Exp $";
|
|
|
|
int plugin_api_version = PLUGIN_API_VERSION;
|
|
static struct pluginfuncs *p = 0;
|
|
|
|
int plugin_pre_auth(struct param_pre_auth *data)
|
|
{
|
|
char *x;
|
|
|
|
if (!data->continue_auth) return PLUGIN_RET_STOP;
|
|
|
|
// Strip off @domain
|
|
if ((x = strchr(data->username, '@')))
|
|
{
|
|
p->log(3, 0, 0, "Stripping off trailing domain name \"%s\"\n", x);
|
|
*x = 0;
|
|
}
|
|
|
|
return PLUGIN_RET_OK;
|
|
}
|
|
|
|
int plugin_init(struct pluginfuncs *funcs)
|
|
{
|
|
return ((p = funcs)) ? 1 : 0;
|
|
}
|