diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2017-07-30 14:05:42 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2017-07-30 14:05:42 +0000 |
commit | ca70287c1ec603f2c7d27d272688c33a668b52c5 (patch) | |
tree | ebfeb6491cfff63ce622e3c9336496841010f541 /sbin/dhclient/dhcpd.h | |
parent | 20461463ac19d1a87952494ad4a5954a725ff931 (diff) |
Use effective_proposal data to set mtu and address.
Diffstat (limited to 'sbin/dhclient/dhcpd.h')
-rw-r--r-- | sbin/dhclient/dhcpd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/dhclient/dhcpd.h b/sbin/dhclient/dhcpd.h index f17f9027a3e..68efa582d62 100644 --- a/sbin/dhclient/dhcpd.h +++ b/sbin/dhclient/dhcpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dhcpd.h,v 1.219 2017/07/29 15:07:47 krw Exp $ */ +/* $OpenBSD: dhcpd.h,v 1.220 2017/07/30 14:05:41 krw Exp $ */ /* * Copyright (c) 2004 Henning Brauer <henning@openbsd.org> @@ -236,7 +236,7 @@ void read_client_leases(char *, struct client_lease_tq *); void delete_address(struct in_addr); void write_resolv_conf(uint8_t *, size_t); void flush_unpriv_ibuf(const char *); -void set_mtu(struct option_data *); -void set_address(char *, struct in_addr, struct option_data *); +void set_mtu(int, uint16_t); +void set_address(char *, struct in_addr, struct in_addr); void set_routes(struct in_addr, struct in_addr, uint8_t *, unsigned int); |