summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstevesk <stevesk@openbsd.org>2007-02-06 17:58:39 +0000
committerstevesk <stevesk@openbsd.org>2007-02-06 17:58:39 +0000
commitb73451fe973c06038ec6be2f35b78ad7d5861cb9 (patch)
tree0c325a40b887ee3e6e130ce6c296bb30a5d322d5
parentdiscuss consistently "the Epoch"; (diff)
downloadwireguard-openbsd-b73451fe973c06038ec6be2f35b78ad7d5861cb9.tar.xz
wireguard-openbsd-b73451fe973c06038ec6be2f35b78ad7d5861cb9.zip
remove some dangling function prototypes
-rw-r--r--usr.sbin/dhcpd/dhcpd.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/usr.sbin/dhcpd/dhcpd.h b/usr.sbin/dhcpd/dhcpd.h
index a7d59ed10c4..53a70253478 100644
--- a/usr.sbin/dhcpd/dhcpd.h
+++ b/usr.sbin/dhcpd/dhcpd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: dhcpd.h,v 1.29 2007/01/04 19:12:41 stevesk Exp $ */
+/* $OpenBSD: dhcpd.h,v 1.30 2007/02/06 17:58:39 stevesk Exp $ */
/*
* Copyright (c) 1995, 1996, 1997, 1998, 1999
@@ -640,21 +640,15 @@ void free_tree(struct tree *, char *);
/* print.c */
char *print_hw_addr(int, int, unsigned char *);
-void dump_raw(unsigned char *, int);
/* bpf.c */
int if_register_bpf(struct interface_info *);
-void if_reinitialize_send(struct interface_info *);
void if_register_send(struct interface_info *);
ssize_t send_packet(struct interface_info *, struct dhcp_packet *, size_t,
struct in_addr, struct sockaddr_in *, struct hardware *);
-void if_reinitialize_receive(struct interface_info *);
void if_register_receive(struct interface_info *);
ssize_t receive_packet(struct interface_info *, unsigned char *, size_t,
struct sockaddr_in *, struct hardware *);
-int can_unicast_without_arp(void);
-int can_receive_unicast_unconfigured(struct interface_info *);
-void maybe_setup_fallback(void);
/* dispatch.c */
extern struct interface_info *interfaces;