summaryrefslogtreecommitdiffstats
path: root/extensions/libipt_addrtype.c
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2010-07-23 21:16:14 +0200
committerJan Engelhardt <jengelh@medozas.de>2010-07-23 21:25:43 +0200
commit32b8e61e4e5bd405d9ad07bf9468498dfbb19f9e (patch)
tree5a9fab83069d6dd29263906b88f58f58aec7d4e0 /extensions/libipt_addrtype.c
parent854fe779211ffa051009b68b3f07673938b714c5 (diff)
all: consistent syntax use in struct option
Try to inhibit copypasting old stuff. Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'extensions/libipt_addrtype.c')
-rw-r--r--extensions/libipt_addrtype.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/extensions/libipt_addrtype.c b/extensions/libipt_addrtype.c
index ad63dcf7..9391b4e6 100644
--- a/extensions/libipt_addrtype.c
+++ b/extensions/libipt_addrtype.c
@@ -1,7 +1,7 @@
/* Shared library add-on to iptables to add addrtype matching support
*
* This program is released under the terms of GNU GPL */
-
+#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -304,23 +304,23 @@ static void addrtype_save_v1(const void *ip, const struct xt_entry_match *match)
}
static const struct option addrtype_opts[] = {
- { "src-type", 1, NULL, '1' },
- { "dst-type", 1, NULL, '2' },
- { .name = NULL }
+ {.name = "src-type", .has_arg = true, .val = '1'},
+ {.name = "dst-type", .has_arg = true, .val = '2'},
+ XT_GETOPT_TABLEEND,
};
static const struct option addrtype_opts_v0[] = {
- { "src-type", 1, NULL, '1' },
- { "dst-type", 1, NULL, '2' },
- { .name = NULL }
+ {.name = "src-type", .has_arg = true, .val = '1'},
+ {.name = "dst-type", .has_arg = true, .val = '2'},
+ XT_GETOPT_TABLEEND,
};
static const struct option addrtype_opts_v1[] = {
- { "src-type", 1, NULL, '1' },
- { "dst-type", 1, NULL, '2' },
- { "limit-iface-in", 0, NULL, '3' },
- { "limit-iface-out", 0, NULL, '4' },
- { .name = NULL }
+ {.name = "src-type", .has_arg = true, .val = '1'},
+ {.name = "dst-type", .has_arg = true, .val = '2'},
+ {.name = "limit-iface-in", .has_arg = false, .val = '3'},
+ {.name = "limit-iface-out", .has_arg = false, .val = '4'},
+ XT_GETOPT_TABLEEND,
};
static struct xtables_match addrtype_mt_reg[] = {