X-Git-Url: http://git.sameswireless.fr/l2tpns.git/blobdiff_plain/7d7afb67c88904839a7b331152b8c3f2cf784adf..87f85beba5bcd8e732609535896e7e909f3fd081:/autosnoop.c diff --git a/autosnoop.c b/autosnoop.c index f8138b9..910a569 100644 --- a/autosnoop.c +++ b/autosnoop.c @@ -4,9 +4,9 @@ /* set up intercept based on RADIUS reply */ -char const *cvs_id = "$Id: autosnoop.c,v 1.4 2004-11-05 02:39:35 bodea Exp $"; +char const *cvs_id = "$Id: autosnoop.c,v 1.7 2004-11-09 08:05:02 bodea Exp $"; -int __plugin_api_version = 1; +int __plugin_api_version = PLUGIN_API_VERSION; struct pluginfuncs *p; int plugin_radius_response(struct param_radius_response *data) @@ -22,12 +22,12 @@ int plugin_radius_response(struct param_radius_response *data) if (*data->value) data->s->snoop_ip = inet_addr(data->value); if (data->s->snoop_ip == INADDR_NONE) data->s->snoop_ip = 0; if (*x) data->s->snoop_port = atoi(x); - p->_log(3, 0, 0, 0, " Intercepting user to %s:%d\n", + p->log(3, 0, 0, 0, " Intercepting user to %s:%d\n", p->inet_toa(data->s->snoop_ip), data->s->snoop_port); } else { - p->_log(3, 0, 0, 0, " Not Intercepting user (reply string should be snoop=ip:port)\n"); + p->log(3, 0, 0, 0, " Not Intercepting user (reply string should be intercept=ip:port)\n"); } } return PLUGIN_RET_OK;