use LOG for logging macro
[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.4 2004/11/05 04:55:27 bodea Exp $";
8
9 int __plugin_api_version = 1;
10 static struct pluginfuncs *p = 0;
11
12 int plugin_pre_auth(struct param_pre_auth *data)
13 {
14 char *x;
15
16 if (!data->continue_auth) return PLUGIN_RET_STOP;
17
18 // Strip off @domain
19 if ((x = strchr(data->username, '@')))
20 {
21 p->log(3, 0, 0, 0, "Stripping off trailing domain name \"%s\"\n", x);
22 *x = 0;
23 }
24
25 return PLUGIN_RET_OK;
26 }
27
28 int plugin_init(struct pluginfuncs *funcs)
29 {
30 return ((p = funcs)) ? 1 : 0;
31 }