diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2017-06-27 13:24:50 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2017-06-27 13:24:50 +0000 |
commit | fdf5f8356b96ec41b8c113e5656448d8a757b123 (patch) | |
tree | cc89a0dd7b2336831b2c6459715261d8da6863cc /sbin/dhclient/dhcpd.h | |
parent | fc3f88d1377c7bffa72b592c383a452c6267a2d1 (diff) |
Nuke get_rdomain() and just snag the interface rdomain from the same
ifa we use to get the interface hw address. One less socket() and
ioctl()! MIssed cleanup from shift to just watching RTM_IFINFO
messages for rdomain switch.
Diffstat (limited to 'sbin/dhclient/dhcpd.h')
-rw-r--r-- | sbin/dhclient/dhcpd.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sbin/dhclient/dhcpd.h b/sbin/dhclient/dhcpd.h index 0c20a0ea824..9094e345db3 100644 --- a/sbin/dhclient/dhcpd.h +++ b/sbin/dhclient/dhcpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dhcpd.h,v 1.195 2017/06/24 23:32:57 krw Exp $ */ +/* $OpenBSD: dhcpd.h,v 1.196 2017/06/27 13:24:49 krw Exp $ */ /* * Copyright (c) 2004 Henning Brauer <henning@openbsd.org> @@ -210,7 +210,6 @@ void set_timeout( struct interface_info *, time_t, void cancel_timeout(struct interface_info *); void interface_link_forceup(char *); int interface_status(struct interface_info *); -int get_rdomain(char *); void get_hw_address(struct interface_info *); void sendhup(void); |