Update version
[l2tpns.git] / stripdomain.c
1 #include <string.h>
2 #include <netinet/ip6.h>
3 #include "dhcp6.h"
4 #include "l2tpns.h"
5 #include "plugin.h"
6
7 /* strip domain part of username before sending RADIUS requests */
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 }