X-Git-Url: http://git.sameswireless.fr/l2tpns.git/blobdiff_plain/90f31e7f7188cd1a6ce58c4cc7d31bf7005a239c..2c975b9d31149a022b8d12e74966db1245f3fb91:/autosnoop.c?ds=inline

diff --git a/autosnoop.c b/autosnoop.c
index 3fdb882..9ed5b1f 100644
--- a/autosnoop.c
+++ b/autosnoop.c
@@ -1,18 +1,17 @@
 #include <string.h>
-#include <malloc.h>
-#include <stdlib.h>
-#include <sys/wait.h>
-#include <sys/types.h>
 #include "l2tpns.h"
 #include "plugin.h"
-#include "control.h"
 
-int __plugin_api_version = 1;
+/* set up intercept based on RADIUS reply */
+
+char const *cvs_id = "$Id: autosnoop.c,v 1.10 2004/11/30 05:49:47 bodea Exp $";
+
+int plugin_api_version = PLUGIN_API_VERSION;
 struct pluginfuncs *p;
 
 int plugin_radius_response(struct param_radius_response *data)
 {
-	if (strcmp(data->key, "intercept") == 0)
+	if (!strcmp(data->key, "intercept"))
 	{
 		char *x;
 		data->s->snoop_ip = 0;
@@ -23,14 +22,17 @@ 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->inet_toa(data->s->snoop_ip), data->s->snoop_port);
+			p->log(3, p->get_id_by_session(data->s), data->s->tunnel,
+				"         Intercepting user to %s:%d\n",
+				p->fmtaddr(data->s->snoop_ip, 0), 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, p->get_id_by_session(data->s), data->s->tunnel,
+				"         Not Intercepting user (reply string should be intercept=ip:port)\n");
 		}
 	}
+
 	return PLUGIN_RET_OK;
 }
 
@@ -38,8 +40,3 @@ int plugin_init(struct pluginfuncs *funcs)
 {
 	return ((p = funcs)) ? 1 : 0;
 }
-
-void plugin_done()
-{
-}
-