make "established" a different tcp flag match
add fragment handling drop IP address from LOG macro (function)
This commit is contained in:
parent
80308e8838
commit
2f5b811429
16 changed files with 722 additions and 627 deletions
10
autosnoop.c
10
autosnoop.c
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
/* set up intercept based on RADIUS reply */
|
||||
|
||||
char const *cvs_id = "$Id: autosnoop.c,v 1.8 2004-11-17 08:23:34 bodea Exp $";
|
||||
char const *cvs_id = "$Id: autosnoop.c,v 1.9 2004-11-29 02:17:17 bodea Exp $";
|
||||
|
||||
int plugin_api_version = PLUGIN_API_VERSION;
|
||||
struct pluginfuncs *p;
|
||||
|
|
@ -22,12 +22,14 @@ 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 intercept=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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue