Merge branch 'fdn-mods'
[l2tpns.git] / stripdomain.c
1 #include <string.h>
2 #include "l2tpns.h"
3 #include "plugin.h"
4
5 /* strip domain part of username before sending RADIUS requests */
6
7 char const *cvs_id = "$Id: stripdomain.c,v 1.8 2005/10/11 09:04:53 bodea Exp $";
8
9 int plugin_api_version = PLUGIN_API_VERSION;
10 static struct pluginfuncs *f = 0;
11
12 int plugin_pre_auth(struct param_pre_auth *data)
13 {
14 char *p;
15
16 if (!data->continue_auth) return PLUGIN_RET_STOP;
17
18 // Strip off @domain
19 if ((p = strchr(data->username, '@')))
20 {
21 f->log(3, 0, 0, "Stripping off trailing domain name \"%s\"\n", p);
22 *p = 0;
23 }
24
25 return PLUGIN_RET_OK;
26 }
27
28 int plugin_init(struct pluginfuncs *funcs)
29 {
30 return ((f = funcs)) ? 1 : 0;
31 }