Commit f4dbc4c2 authored by Taehee Yoo's avatar Taehee Yoo Committed by Pablo Neira Ayuso

netfilter: nf_nat_snmp_basic: remove useless comment

Remove comments that do not let us know important information.
Signed-off-by: default avatarTaehee Yoo <ap420073@gmail.com>
Signed-off-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
parent 41e4b391
...@@ -81,12 +81,6 @@ struct oct1_map ...@@ -81,12 +81,6 @@ struct oct1_map
}; };
/*****************************************************************************
*
* Basic ASN.1 decoding routines (gxsnmp author Dirk Wisse)
*
*****************************************************************************/
/* Class */ /* Class */
#define ASN1_UNI 0 /* Universal */ #define ASN1_UNI 0 /* Universal */
#define ASN1_APL 1 /* Application */ #define ASN1_APL 1 /* Application */
...@@ -491,12 +485,6 @@ static unsigned char asn1_oid_decode(struct asn1_ctx *ctx, ...@@ -491,12 +485,6 @@ static unsigned char asn1_oid_decode(struct asn1_ctx *ctx,
return 1; return 1;
} }
/*****************************************************************************
*
* SNMP decoding routines (gxsnmp author Dirk Wisse)
*
*****************************************************************************/
/* SNMP Versions */ /* SNMP Versions */
#define SNMP_V1 0 #define SNMP_V1 0
#define SNMP_V2C 1 #define SNMP_V2C 1
...@@ -992,12 +980,6 @@ snmp_trap_decode(struct asn1_ctx *ctx, struct snmp_v1_trap *trap, ...@@ -992,12 +980,6 @@ snmp_trap_decode(struct asn1_ctx *ctx, struct snmp_v1_trap *trap,
return 0; return 0;
} }
/*****************************************************************************
*
* Misc. routines
*
*****************************************************************************/
/* /*
* Parse and mangle SNMP message according to mapping. * Parse and mangle SNMP message according to mapping.
* (And this is the fucking 'basic' method). * (And this is the fucking 'basic' method).
...@@ -1157,12 +1139,6 @@ static int snmp_parse_mangle(unsigned char *msg, ...@@ -1157,12 +1139,6 @@ static int snmp_parse_mangle(unsigned char *msg,
return 1; return 1;
} }
/*****************************************************************************
*
* NAT routines.
*
*****************************************************************************/
/* /*
* SNMP translation routine. * SNMP translation routine.
*/ */
...@@ -1259,12 +1235,6 @@ static struct nf_conntrack_helper snmp_trap_helper __read_mostly = { ...@@ -1259,12 +1235,6 @@ static struct nf_conntrack_helper snmp_trap_helper __read_mostly = {
.tuple.dst.protonum = IPPROTO_UDP, .tuple.dst.protonum = IPPROTO_UDP,
}; };
/*****************************************************************************
*
* Module stuff.
*
*****************************************************************************/
static int __init nf_nat_snmp_basic_init(void) static int __init nf_nat_snmp_basic_init(void)
{ {
BUG_ON(nf_nat_snmp_hook != NULL); BUG_ON(nf_nat_snmp_hook != NULL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment