summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Fought <Rich.Fought@watchguard.com>2012-10-09 09:50:31 -0700
committerRich Fought <Rich.Fought@watchguard.com>2012-10-09 09:50:31 -0700
commitdaf5f93a138d91d0d041705c276115e94dbeb84b (patch)
tree78faaef74087b6cee04343d46206de965ba94019
parent4a702e6b728f0ecfe7994c650403b6e7c8ffc88f (diff)
downloadlibnl-daf5f93a138d91d0d041705c276115e94dbeb84b.tar.gz
Compile CLI
-rw-r--r--src/lib/Makefile.am2
-rw-r--r--src/lib/exp.c22
2 files changed, 1 insertions, 23 deletions
diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am
index a88163a..6688e7c 100644
--- a/src/lib/Makefile.am
+++ b/src/lib/Makefile.am
@@ -38,6 +38,6 @@ libnl_cli_3_la_LIBADD = ${top_builddir}/lib/libnl-3.la \
libnl_cli_3_la_SOURCES = \
utils.c addr.c ct.c link.c neigh.c rule.c route.c \
- tc.c qdisc.c class.c cls.c
+ tc.c qdisc.c class.c cls.c exp.c
# cls/ematch_syntax.c cls/ematch_grammar.c cls/ematch.c
# cls/pktloc_syntax.c cls/pktloc_grammar.c cls/utils.c
diff --git a/src/lib/exp.c b/src/lib/exp.c
index 7e10803..01aae01 100644
--- a/src/lib/exp.c
+++ b/src/lib/exp.c
@@ -102,26 +102,4 @@ void nl_cli_exp_parse_dst_port(struct nfnl_exp *exp, int tuple, char *arg)
nfnl_exp_set_ports(exp, tuple, sport, dport);
}
-#if 0
- } else if (arg_match("origicmpid")) {
- if (argc > ++idx)
- nfnl_ct_set_icmp_id(ct, 0, strtoul(argv[idx++], NULL, 0));
- } else if (arg_match("origicmptype")) {
- if (argc > ++idx)
- nfnl_ct_set_icmp_type(ct, 0, strtoul(argv[idx++], NULL, 0));
- } else if (arg_match("origicmpcode")) {
- if (argc > ++idx)
- nfnl_ct_set_icmp_code(ct, 0, strtoul(argv[idx++], NULL, 0));
- } else if (arg_match("replyicmpid")) {
- if (argc > ++idx)
- nfnl_ct_set_icmp_id(ct, 1, strtoul(argv[idx++], NULL, 0));
- } else if (arg_match("replyicmptype")) {
- if (argc > ++idx)
- nfnl_ct_set_icmp_type(ct, 1, strtoul(argv[idx++], NULL, 0));
- } else if (arg_match("replyicmpcode")) {
- if (argc > ++idx)
- nfnl_ct_set_icmp_code(ct, 1, strtoul(argv[idx++], NULL, 0));
- }
-#endif
-
/** @} */