diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-03-02 12:40:32 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-03-02 12:40:32 +0000 |
commit | 6f65c96f49898b7b64e58c7f343992f97c77db75 (patch) | |
tree | 2ea61810e6ca468d2475a00774c2683792c8bef5 /sbin/dhclient/dhcpd.h | |
parent | 8e8e738131702081c68df4d346e8b559125e0e25 (diff) |
since we're dealing with one interface and not quite a few ones we can give
this one onterface as parameter to discove_interfaces and get rid of quite
some of the multiple-interface-discover logic
Diffstat (limited to 'sbin/dhclient/dhcpd.h')
-rw-r--r-- | sbin/dhclient/dhcpd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/dhclient/dhcpd.h b/sbin/dhclient/dhcpd.h index 68fba116ea8..4ac24a73852 100644 --- a/sbin/dhclient/dhcpd.h +++ b/sbin/dhclient/dhcpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dhcpd.h,v 1.19 2004/02/25 14:22:12 henning Exp $ */ +/* $OpenBSD: dhcpd.h,v 1.20 2004/03/02 12:40:31 henning Exp $ */ /* * Copyright (c) 2004 Henning Brauer <henning@openbsd.org> @@ -326,7 +326,7 @@ extern int quiet_interface_discovery; 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(void); +void discover_interfaces(struct interface_info *); void reinitialize_interfaces(void); void dispatch(void); void got_one(struct protocol *); |