* [ebtables-compat PATCH] extensions: cleanup commented code in ebtables-compat extensions
@ 2015-01-30 11:47 Arturo Borrero Gonzalez
2015-01-30 18:13 ` Pablo Neira Ayuso
0 siblings, 1 reply; 2+ messages in thread
From: Arturo Borrero Gonzalez @ 2015-01-30 11:47 UTC (permalink / raw)
To: netfilter-devel; +Cc: pablo
This code can be cleaned up.
Signed-off-by: Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
---
extensions/libebt_802_3.c | 29 -----------------------------
extensions/libebt_ip.c | 16 ----------------
2 files changed, 45 deletions(-)
diff --git a/extensions/libebt_802_3.c b/extensions/libebt_802_3.c
index 3ca80f7..e19c21d 100644
--- a/extensions/libebt_802_3.c
+++ b/extensions/libebt_802_3.c
@@ -44,8 +44,6 @@ static void br802_3_init(struct xt_entry_match *match)
info->bitmask = 0;
}
-/*static int parse(int c, char **argv, int argc, const struct ebt_u_entry *entry,
- unsigned int *flags, struct ebt_entry_match **match)*/
static int
br802_3_parse(int c, char **argv, int invert, unsigned int *flags,
const void *entry, struct xt_entry_match **match)
@@ -87,17 +85,11 @@ br802_3_parse(int c, char **argv, int invert, unsigned int *flags,
static void
br802_3_final_check(unsigned int flags)
{
- /*if (!(entry->bitmask & EBT_802_3))
- ebt_print_error("For 802.3 DSAP/SSAP filtering the protocol "
- "must be LENGTH");
- */
if (!flags)
xtables_error(PARAMETER_PROBLEM,
"You must specify proper arguments");
}
-/*static void print(const struct ebt_u_entry *entry,
- const struct ebt_entry_match *match)*/
static void br802_3_print(const void *ip, const struct xt_entry_match *match,
int numeric)
{
@@ -116,28 +108,7 @@ static void br802_3_print(const void *ip, const struct xt_entry_match *match,
printf("0x%.4x ", ntohs(info->type));
}
}
-/*
-static int compare(const struct ebt_entry_match *m1,
- const struct ebt_entry_match *m2)
-{
- struct ebt_802_3_info *info1 = (struct ebt_802_3_info *)m1->data;
- struct ebt_802_3_info *info2 = (struct ebt_802_3_info *)m2->data;
- if (info1->bitmask != info2->bitmask)
- return 0;
- if (info1->invflags != info2->invflags)
- return 0;
- if (info1->bitmask & EBT_802_3_SAP) {
- if (info1->sap != info2->sap)
- return 0;
- }
- if (info1->bitmask & EBT_802_3_TYPE) {
- if (info1->type != info2->type)
- return 0;
- }
- return 1;
-}
-*/
static struct xtables_match br802_3_match =
{
.name = "802_3",
diff --git a/extensions/libebt_ip.c b/extensions/libebt_ip.c
index ffb7ed6..a85810b 100644
--- a/extensions/libebt_ip.c
+++ b/extensions/libebt_ip.c
@@ -219,22 +219,6 @@ brip_parse(int c, char **argv, int invert, unsigned int *flags,
static void brip_final_check(unsigned int flags)
{
-/* struct ebt_ip_info *ipinfo = (struct ebt_ip_info *)match->data;
-
- if (entry->ethproto != ETH_P_IP || entry->invflags & EBT_IPROTO) {
- ebt_print_error("For IP filtering the protocol must be "
- "specified as IPv4");
- } else if (info->bitmask & (EBT_IP_SPORT|EBT_IP_DPORT) &&
- (!(info->bitmask & EBT_IP_PROTO) ||
- info->invflags & EBT_IP_PROTO ||
- (info->protocol!=IPPROTO_TCP &&
- info->protocol!=IPPROTO_UDP &&
- info->protocol!=IPPROTO_SCTP &&
- info->protocol!=IPPROTO_DCCP)))
- ebt_print_error("For port filtering the IP protocol must be "
- "either 6 (tcp), 17 (udp), 33 (dccp) or "
- "132 (sctp)");
-*/
if (!flags)
xtables_error(PARAMETER_PROBLEM,
"You must specify proper arguments");
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [ebtables-compat PATCH] extensions: cleanup commented code in ebtables-compat extensions
2015-01-30 11:47 [ebtables-compat PATCH] extensions: cleanup commented code in ebtables-compat extensions Arturo Borrero Gonzalez
@ 2015-01-30 18:13 ` Pablo Neira Ayuso
0 siblings, 0 replies; 2+ messages in thread
From: Pablo Neira Ayuso @ 2015-01-30 18:13 UTC (permalink / raw)
To: Arturo Borrero Gonzalez; +Cc: netfilter-devel
On Fri, Jan 30, 2015 at 12:47:16PM +0100, Arturo Borrero Gonzalez wrote:
> This code can be cleaned up.
Also applied, thanks.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-01-30 18:10 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-30 11:47 [ebtables-compat PATCH] extensions: cleanup commented code in ebtables-compat extensions Arturo Borrero Gonzalez
2015-01-30 18:13 ` Pablo Neira Ayuso
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).