diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-03-02 13:39:45 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-03-02 13:39:45 +0000 |
commit | 7a9b441879fd00257df332e7146265949910d1d1 (patch) | |
tree | 1d04157ceaef3dff50161b2f10fbca0be5e7d4d7 /sbin/dhclient/dhcpd.h | |
parent | 37f1db3223bd4f96d4482feb9f64510285e0e422 (diff) |
we deal with one interface at a time, so remove the interface list gunk.
Diffstat (limited to 'sbin/dhclient/dhcpd.h')
-rw-r--r-- | sbin/dhclient/dhcpd.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sbin/dhclient/dhcpd.h b/sbin/dhclient/dhcpd.h index 11a290cfd27..79c8cbfcf2f 100644 --- a/sbin/dhclient/dhcpd.h +++ b/sbin/dhclient/dhcpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dhcpd.h,v 1.22 2004/03/02 12:56:30 henning Exp $ */ +/* $OpenBSD: dhcpd.h,v 1.23 2004/03/02 13:39:44 henning Exp $ */ /* * Copyright (c) 2004 Henning Brauer <henning@openbsd.org> @@ -319,11 +319,8 @@ ssize_t receive_packet(struct interface_info *, unsigned char *, size_t, struct sockaddr_in *, struct hardware *); /* dispatch.c */ -extern struct interface_info *interfaces; -extern struct protocol *protocols; extern void (*bootp_packet_handler)(struct interface_info *, struct dhcp_packet *, int, unsigned int, struct iaddr, struct hardware *); -extern struct timeout *timeouts; void discover_interfaces(struct interface_info *); void reinitialize_interfaces(void); void dispatch(void); |