diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2018-05-19 22:10:23 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2018-05-19 22:10:23 +0000 |
commit | 0d23ebbd13ae0a9aced5277f8017c3affd32626b (patch) | |
tree | b7488d93a02da9af4522c9b93fccaf43a1379ea6 /sbin/dhclient/dhcpd.h | |
parent | bfb9c9e776e6bd1589b12350749c4833743477db (diff) |
Add '-r', which causes running dhclient to release
lease and exit.
Man page tweaks from jmc@.
Request, tests & ok tb@. ok millert@ on previous
version.
Diffstat (limited to 'sbin/dhclient/dhcpd.h')
-rw-r--r-- | sbin/dhclient/dhcpd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/dhclient/dhcpd.h b/sbin/dhclient/dhcpd.h index 89d6cc5063a..0f7f118f101 100644 --- a/sbin/dhclient/dhcpd.h +++ b/sbin/dhclient/dhcpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dhcpd.h,v 1.254 2018/02/28 22:16:56 krw Exp $ */ +/* $OpenBSD: dhcpd.h,v 1.255 2018/05/19 22:10:22 krw Exp $ */ /* * Copyright (c) 2004 Henning Brauer <henning@openbsd.org> @@ -214,6 +214,7 @@ extern int cmd_opts; #define OPT_NOACTION 1 #define OPT_VERBOSE 2 #define OPT_FOREGROUND 4 +#define OPT_RELEASE 8 void dhcpoffer(struct interface_info *, struct option_data *, const char *); |