From dbac8ad71c3c418fd8a62c08211885a38177b725 Mon Sep 17 00:00:00 2001 From: Phil Oester Date: Thu, 20 Jul 2006 17:01:54 +0000 Subject: reduce parse_*_port duplication (Phil Oester ) The below patch (dependent upon my 'reduce service_to_port duplication' patch) centralizes the parse_*_port functions into parse_port. --- include/ip6tables.h | 1 + include/iptables.h | 1 + 2 files changed, 2 insertions(+) (limited to 'include') diff --git a/include/ip6tables.h b/include/ip6tables.h index e711982c..b1140b33 100644 --- a/include/ip6tables.h +++ b/include/ip6tables.h @@ -134,6 +134,7 @@ extern void register_match6(struct ip6tables_match *me); extern void register_target6(struct ip6tables_target *me); extern int service_to_port(const char *name, const char *proto); +extern u_int16_t parse_port(const char *port, const char *proto); extern int do_command6(int argc, char *argv[], char **table, ip6tc_handle_t *handle); /* Keeping track of external matches and targets: linked lists. */ diff --git a/include/iptables.h b/include/iptables.h index 4465e59b..ba27cac6 100644 --- a/include/iptables.h +++ b/include/iptables.h @@ -152,6 +152,7 @@ extern void register_match(struct iptables_match *me); extern void register_target(struct iptables_target *me); extern int service_to_port(const char *name, const char *proto); +extern u_int16_t parse_port(const char *port, const char *proto); extern struct in_addr *dotted_to_addr(const char *dotted); extern char *addr_to_dotted(const struct in_addr *addrp); extern char *addr_to_anyname(const struct in_addr *addr); -- cgit v1.2.3