summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRusty Russell <rusty@linuxcare.com.au>2000-12-19 04:45:23 +0000
committerRusty Russell <rusty@rustcorp.com.au>2000-12-19 04:45:23 +0000
commita3e6aaa5371937420dd44949d840d19726998abc (patch)
tree9680caa1c7023e9356a824032d95802e99899a0d
parent8e07bd78ade5e2b4636d410a897119e111ea3e6c (diff)
Define IPPROTO_ESP and IPPROTO_AH in case of primitive headers.
-rw-r--r--iptables.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/iptables.c b/iptables.c
index 73f400b5..eb679df8 100644
--- a/iptables.c
+++ b/iptables.c
@@ -196,6 +196,14 @@ struct pprot {
u_int8_t num;
};
+/* Primitive headers... */
+#ifndef IPPROTO_ESP
+#define IPPROTO_ESP 50
+#endif
+#ifndef IPPROTO_AH
+#define IPPROTO_AH 51
+#endif
+
static const struct pprot chain_protos[] = {
{ "tcp", IPPROTO_TCP },
{ "udp", IPPROTO_UDP },