summaryrefslogtreecommitdiffstats
path: root/tests/conntrackd/cthelper/proto.h
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2013-06-07 19:44:24 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2013-06-07 21:19:58 +0200
commitad9c4a919976a49246d74f751afe5da567328b54 (patch)
tree2c199908a4ec780bf2008e2ee624ff373ddc79b0 /tests/conntrackd/cthelper/proto.h
parentc9a31025a96177735c3259937da342a4f12156ae (diff)
tests: cthelper: remove test infrastructure from this tree
I decided to move it to: http://git.netfilter.org/conntrackd-helper-tests to reduce the bloat of this tree, most people are not interested in this stuff when they grab it via git clone. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'tests/conntrackd/cthelper/proto.h')
-rwxr-xr-xtests/conntrackd/cthelper/proto.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/tests/conntrackd/cthelper/proto.h b/tests/conntrackd/cthelper/proto.h
deleted file mode 100755
index 9e99eea..0000000
--- a/tests/conntrackd/cthelper/proto.h
+++ /dev/null
@@ -1,50 +0,0 @@
-#ifndef _HELPER_H_
-#define _HELPER_H_
-
-#include <stdint.h>
-
-#include "../../../include/linux_list.h"
-
-struct nf_conntrack;
-
-struct cthelper_proto_l4_helper {
- struct list_head head;
-
- unsigned int l4protonum;
-
- void (*l4ct_build)(const uint8_t *pkt, struct nf_conntrack *ct);
- int (*l4ct_cmp_orig)(const uint8_t *pkt, struct nf_conntrack *ct);
- int (*l4ct_cmp_repl)(const uint8_t *pkt, struct nf_conntrack *ct);
- int (*l4ct_cmp_port)(struct nf_conntrack *ct, uint16_t port);
-
- int (*l4pkt_no_data)(const uint8_t *pkt);
-};
-
-struct cthelper_proto_l2l3_helper {
- struct list_head head;
-
- unsigned int l2protonum;
- unsigned int l2hdr_len;
-
- unsigned int l3protonum;
-
- void (*l3ct_build)(const uint8_t *pkt, struct nf_conntrack *ct);
- int (*l3ct_cmp_orig)(const uint8_t *pkt, struct nf_conntrack *ct);
- int (*l3ct_cmp_repl)(const uint8_t *pkt, struct nf_conntrack *ct);
-
- int (*l3pkt_hdr_len)(const uint8_t *pkt);
- int (*l4pkt_proto)(const uint8_t *pkt);
-};
-
-struct cthelper_proto_l2l3_helper *cthelper_proto_l2l3_helper_find(const uint8_t *pkt, unsigned int *l4protonum, unsigned int *l3hdr_len);
-void cthelper_proto_l2l3_helper_register(struct cthelper_proto_l2l3_helper *h);
-
-struct cthelper_proto_l4_helper *cthelper_proto_l4_helper_find(const uint8_t *pkt, unsigned int l4protonum);
-void cthelper_proto_l4_helper_register(struct cthelper_proto_l4_helper *h);
-
-/* Initialization of supported protocols here. */
-void l2l3_ipv4_init(void);
-void l4_tcp_init(void);
-void l4_udp_init(void);
-
-#endif