summaryrefslogtreecommitdiff
path: root/sys/netinet
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1999-01-07 05:44:34 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1999-01-07 05:44:34 +0000
commitb6419e6690b1dce43efea59a51b8b9bfb25a1a01 (patch)
treef4942d8f4da23e6d5b794a8cdf6e890db8128f6a /sys/netinet
parent55e31660764750d869cfa9c656c9f479f9473cca (diff)
rename baddynamic() to in_baddynamic(), and export it
Diffstat (limited to 'sys/netinet')
-rw-r--r--sys/netinet/in_pcb.c24
-rw-r--r--sys/netinet/in_pcb.h3
2 files changed, 13 insertions, 14 deletions
diff --git a/sys/netinet/in_pcb.c b/sys/netinet/in_pcb.c
index c1e1c4ea0b5..9656d5448a1 100644
--- a/sys/netinet/in_pcb.c
+++ b/sys/netinet/in_pcb.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: in_pcb.c,v 1.24 1998/05/18 21:10:27 provos Exp $ */
+/* $OpenBSD: in_pcb.c,v 1.25 1999/01/07 05:44:31 deraadt Exp $ */
/* $NetBSD: in_pcb.c,v 1.25 1996/02/13 23:41:53 christos Exp $ */
/*
@@ -84,8 +84,6 @@ int ipport_hilastauto = IPPORT_HILASTAUTO; /* 44999 */
#define INPCBHASH(table, faddr, fport, laddr, lport) \
&(table)->inpt_hashtbl[(ntohl((faddr)->s_addr) + ntohs((fport)) + ntohs((lport))) & (table->inpt_hash)]
-static int baddynamic __P((u_int16_t, u_int16_t));
-
void
in_pcbinit(table, hashsize)
struct inpcbtable *table;
@@ -102,8 +100,8 @@ struct baddynamicports baddynamicports;
/*
* Check if the specified port is invalid for dynamic allocation.
*/
-static int
-baddynamic(port, proto)
+int
+in_baddynamic(port, proto)
u_int16_t port;
u_int16_t proto;
{
@@ -112,12 +110,12 @@ baddynamic(port, proto)
return(0);
switch (proto) {
- case IPPROTO_TCP:
- return (DP_ISSET(baddynamicports.tcp, port));
- case IPPROTO_UDP:
- return (DP_ISSET(baddynamicports.udp, port));
- default:
- return (0);
+ case IPPROTO_TCP:
+ return (DP_ISSET(baddynamicports.tcp, port));
+ case IPPROTO_UDP:
+ return (DP_ISSET(baddynamicports.udp, port));
+ default:
+ return (0);
}
}
@@ -270,7 +268,7 @@ portloop:
if (*lastport > first || *lastport < last)
*lastport = first;
lport = htons(*lastport);
- } while (baddynamic(*lastport, so->so_proto->pr_protocol) ||
+ } while (in_baddynamic(*lastport, so->so_proto->pr_protocol) ||
in_pcblookup(table, zeroin_addr, 0,
inp->inp_laddr, lport, wild));
} else {
@@ -297,7 +295,7 @@ portloop:
if (*lastport < first || *lastport > last)
*lastport = first;
lport = htons(*lastport);
- } while (baddynamic(*lastport, so->so_proto->pr_protocol) ||
+ } while (in_baddynamic(*lastport, so->so_proto->pr_protocol) ||
in_pcblookup(table, zeroin_addr, 0,
inp->inp_laddr, lport, wild));
}
diff --git a/sys/netinet/in_pcb.h b/sys/netinet/in_pcb.h
index c0645b46070..9cb91e53369 100644
--- a/sys/netinet/in_pcb.h
+++ b/sys/netinet/in_pcb.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: in_pcb.h,v 1.10 1998/05/18 21:10:28 provos Exp $ */
+/* $OpenBSD: in_pcb.h,v 1.11 1999/01/07 05:44:32 deraadt Exp $ */
/* $NetBSD: in_pcb.h,v 1.14 1996/02/13 23:42:00 christos Exp $ */
/*
@@ -130,4 +130,5 @@ void in_pcbrehash __P((struct inpcb *));
void in_rtchange __P((struct inpcb *, int));
void in_setpeeraddr __P((struct inpcb *, struct mbuf *));
void in_setsockaddr __P((struct inpcb *, struct mbuf *));
+int in_baddynamic __P((u_int16_t, u_int16_t));
#endif