Add strip domain plugin
[l2tpns.git] / stripdomain.c
1 #include <string.h>
2 #include "l2tpns.h"
3 #include "plugin.h"
4
5 char const *cvs_id = "$Id: stripdomain.c,v 1.1 2004/09/02 04:29:30 fred_nerk Exp $";
6
7 int __plugin_api_version = 1;
8 static struct pluginfuncs *p = 0;
9
10 int plugin_pre_auth(struct param_pre_auth *data)
11 {
12 char *x;
13
14 if (!data->continue_auth) return PLUGIN_RET_STOP;
15
16 // Strip off @domain
17 if ((x = strchr(data->username, '@')))
18 {
19 p->log(3, 0, 0, 0, "Stripping off trailing domain name \"%s\"\n", x);
20 *x = 0;
21 }
22
23 return PLUGIN_RET_OK;
24 }
25
26 int plugin_init(struct pluginfuncs *funcs)
27 {
28 return ((p = funcs)) ? 1 : 0;
29 }