Fix: remove old IPV6 routes on master
[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 int plugin_api_version = PLUGIN_API_VERSION;
8 static struct pluginfuncs *f = 0;
9
10 int plugin_pre_auth(struct param_pre_auth *data)
11 {
12 char *p;
13
14 if (!data->continue_auth) return PLUGIN_RET_STOP;
15
16 // Strip off @domain
17 if ((p = strchr(data->username, '@')))
18 {
19 f->log(3, 0, 0, "Stripping off trailing domain name \"%s\"\n", p);
20 *p = 0;
21 }
22
23 return PLUGIN_RET_OK;
24 }
25
26 int plugin_init(struct pluginfuncs *funcs)
27 {
28 return ((f = funcs)) ? 1 : 0;
29 }