summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/netinet
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-03-29 05:16:42 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-03-29 05:16:42 +0000
commite67b6ea141085a5a41c6546a869d94113a9185f2 (patch)
tree1c1f90b5e22dbfcd88e974269d9886f9f25be1d9 /cpukit/libnetworking/netinet
parent2007-03-28 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-e67b6ea141085a5a41c6546a869d94113a9185f2.tar.bz2
Eliminate __P().
Diffstat (limited to 'cpukit/libnetworking/netinet')
-rw-r--r--cpukit/libnetworking/netinet/ip_fw.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/cpukit/libnetworking/netinet/ip_fw.c b/cpukit/libnetworking/netinet/ip_fw.c
index 4bad293e7d..dbaf0d0d73 100644
--- a/cpukit/libnetworking/netinet/ip_fw.c
+++ b/cpukit/libnetworking/netinet/ip_fw.c
@@ -81,27 +81,27 @@ SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, verbose_limit, CTLFLAG_RW, &fw_verbose_lim
#define dprint_ip(a) if (!fw_debug); else print_ip(a)
-static int add_entry __P((struct ip_fw_head *chainptr, struct ip_fw *frwl));
-static int del_entry __P((struct ip_fw_head *chainptr, u_short number));
-static int zero_entry __P((struct mbuf *m));
-static struct ip_fw *check_ipfw_struct __P((struct ip_fw *m));
-static struct ip_fw *check_ipfw_mbuf __P((struct mbuf *fw));
-static int ipopts_match __P((struct ip *ip, struct ip_fw *f));
-static int port_match __P((u_short *portptr, int nports, u_short port,
- int range_flag));
-static int tcpflg_match __P((struct tcphdr *tcp, struct ip_fw *f));
-static int icmptype_match __P((struct icmp * icmp, struct ip_fw * f));
-static void ipfw_report __P((struct ip_fw *f, struct ip *ip,
- struct ifnet *rif, struct ifnet *oif));
+static int add_entry(struct ip_fw_head *chainptr, struct ip_fw *frwl);
+static int del_entry(struct ip_fw_head *chainptr, u_short number);
+static int zero_entry(struct mbuf *m);
+static struct ip_fw *check_ipfw_struct(struct ip_fw *m);
+static struct ip_fw *check_ipfw_mbuf(struct mbuf *fw);
+static int ipopts_match(struct ip *ip, struct ip_fw *f);
+static int port_match(u_short *portptr, int nports, u_short port,
+ int range_flag);
+static int tcpflg_match(struct tcphdr *tcp, struct ip_fw *f);
+static int icmptype_match(struct icmp * icmp, struct ip_fw * f);
+static void ipfw_report(struct ip_fw *f, struct ip *ip,
+ struct ifnet *rif, struct ifnet *oif);
#ifdef IPFIREWALL_MODULE
static ip_fw_chk_t *old_chk_ptr;
static ip_fw_ctl_t *old_ctl_ptr;
#endif
-static int ip_fw_chk __P((struct ip **pip, int hlen,
- struct ifnet *oif, int ignport, struct mbuf **m));
-static int ip_fw_ctl __P((int stage, struct mbuf **mm));
+static int ip_fw_chk(struct ip **pip, int hlen,
+ struct ifnet *oif, int ignport, struct mbuf **m);
+static int ip_fw_ctl(int stage, struct mbuf **mm);
static char err_prefix[] = "ip_fw_ctl:";