projects
/
l2tpns.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
f7ec2b6
)
layer 4 info implies !frag
author
Brendan O'Dea
<bod@optus.net>
Mon, 14 Nov 2005 21:08:30 +0000
(21:08 +0000)
committer
Brendan O'Dea
<bod@optus.net>
Mon, 14 Nov 2005 21:08:30 +0000
(21:08 +0000)
l2tpns.c
patch
|
blob
|
history
diff --git
a/l2tpns.c
b/l2tpns.c
index
ab9aded
..
2c452ae
100644
(file)
--- a/
l2tpns.c
+++ b/
l2tpns.c
@@
-4,7
+4,7
@@
// Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced
// vim: sw=8 ts=8
// Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced
// vim: sw=8 ts=8
-char const *cvs_id_l2tpns = "$Id: l2tpns.c,v 1.14
7 2005-11-14 08:38:02
bodea Exp $";
+char const *cvs_id_l2tpns = "$Id: l2tpns.c,v 1.14
8 2005-11-14 21:08:30
bodea Exp $";
#include <arpa/inet.h>
#include <assert.h>
#include <arpa/inet.h>
#include <assert.h>
@@
-5350,10
+5350,9
@@
int ip_filter(uint8_t *buf, int len, uint8_t filter)
if (frag_offset)
{
if (frag_offset)
{
- // non-fragmented deny rules are skipped if containing L4 matches
- if (!rule->frag &&
- (rule->src_ports.op || rule->dst_ports.op || rule->tcp_flag_op) &&
- rule->action == FILTER_ACTION_DENY)
+ // layer 4 deny rules are skipped
+ if (rule->action == FILTER_ACTION_DENY &&
+ (rule->src_ports.op || rule->dst_ports.op || rule->tcp_flag_op))
continue;
}
else
continue;
}
else