summaryrefslogtreecommitdiffstats
path: root/usr.sbin/inetd
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2013-11-12 19:44:44 +0000
committerderaadt <deraadt@openbsd.org>2013-11-12 19:44:44 +0000
commit3e37b709e8af88fd4330128d5a6a4f34d743f312 (patch)
tree7d1ad90a4d0603f78a112e78433750e79173d97c /usr.sbin/inetd
parentprototype the mess of functions inside (diff)
downloadwireguard-openbsd-3e37b709e8af88fd4330128d5a6a4f34d743f312.tar.xz
wireguard-openbsd-3e37b709e8af88fd4330128d5a6a4f34d743f312.zip
missing protos
Diffstat (limited to 'usr.sbin/inetd')
-rw-r--r--usr.sbin/inetd/inetd.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/usr.sbin/inetd/inetd.c b/usr.sbin/inetd/inetd.c
index 44faf3be246..f6f53d85de3 100644
--- a/usr.sbin/inetd/inetd.c
+++ b/usr.sbin/inetd/inetd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: inetd.c,v 1.135 2013/04/19 18:03:16 deraadt Exp $ */
+/* $OpenBSD: inetd.c,v 1.136 2013/11/12 19:44:44 deraadt Exp $ */
/*
* Copyright (c) 1983,1991 The Regents of the University of California.
@@ -290,6 +290,12 @@ int dg_broadcast(struct in_addr *in);
#define NUMINT (sizeof(intab) / sizeof(struct inent))
char *CONFIG = _PATH_INETDCONF;
+void fd_grow(fd_set **fdsp, int *bytes, int fd);
+int dg_badinput(struct sockaddr *sa);
+void inetd_setproctitle(char *a, int s);
+void initring(void);
+u_int32_t machtime(void);
+
void
fd_grow(fd_set **fdsp, int *bytes, int fd)
{