diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2017-06-28 14:35:44 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2017-06-28 14:35:44 +0000 |
commit | 0e97a9402cf7485088d43061e7fd7c8540ec8369 (patch) | |
tree | 72fdeefa3efc014a92694b2ab90edcd5b3e260c1 /sbin/dhclient/dhcpd.h | |
parent | 4789add3e8ea23d87af356d27e1bf8ebf3103eb1 (diff) |
Stop trying to clean up addresses, routes and "-L" file
whenever dhclient dies. Eliminates differences in handling
and thus need to intercept signals INT, TERM, USR1,
USR2. Eliminates need for 'zapzombies' field and thus
entire struct imsg_flushroutes. Eliminates need for 'imsg'
parameter to and associated logic in priv_flush_routes().
Address, routes and '-L' file are still cleaned out when
binding a lease.
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 9094e345db3..2151304ab3e 100644 --- a/sbin/dhclient/dhcpd.h +++ b/sbin/dhclient/dhcpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dhcpd.h,v 1.196 2017/06/27 13:24:49 krw Exp $ */ +/* $OpenBSD: dhcpd.h,v 1.197 2017/06/28 14:35:43 krw Exp $ */ /* * Copyright (c) 2004 Henning Brauer <henning@openbsd.org> @@ -165,7 +165,6 @@ extern struct imsgbuf *unpriv_ibuf; extern volatile sig_atomic_t quit; extern struct in_addr deleting; extern struct in_addr adding; -extern struct in_addr active_addr; /* options.c */ int cons_options(struct interface_info *, struct option_data *); |