aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/dhcpc.h
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-07-01 17:05:57 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-07-01 17:05:57 +0000
commitc82b5108e1a40f3b299043770e01d7d7db35de04 (patch)
tree35039a36868df644b8e5ffc766c1b0c921c88ab5 /networking/udhcp/dhcpc.h
parentdc7a5eae36d31f5cfc301de2499329b8a03ea660 (diff)
downloadbusybox-w32-c82b5108e1a40f3b299043770e01d7d7db35de04.tar.gz
busybox-w32-c82b5108e1a40f3b299043770e01d7d7db35de04.tar.bz2
busybox-w32-c82b5108e1a40f3b299043770e01d7d7db35de04.zip
udhcp: new config option "Rewrite the lease file at every new acknowledge"
(Mats Erik Andersson <mats@blue2net.com> (Blue2Net AB)) udhcp: consistently treat server_config.start/end IPs as host-order fix IP parsing for 64bit machines fix unsafe hton macro usage in read_opt() do not chdir("/") when daemonizing fix help text
Diffstat (limited to 'networking/udhcp/dhcpc.h')
-rw-r--r--networking/udhcp/dhcpc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/udhcp/dhcpc.h b/networking/udhcp/dhcpc.h
index fa091bf72..09b014239 100644
--- a/networking/udhcp/dhcpc.h
+++ b/networking/udhcp/dhcpc.h
@@ -17,12 +17,12 @@ struct client_config_t {
17 /* (can be set directly to the result of getopt32) */ 17 /* (can be set directly to the result of getopt32) */
18 char foreground; /* Do not fork */ 18 char foreground; /* Do not fork */
19 char quit_after_lease; /* Quit after obtaining lease */ 19 char quit_after_lease; /* Quit after obtaining lease */
20 char release_on_quit; /* perform release on quit */ 20 char release_on_quit; /* Perform release on quit */
21 char abort_if_no_lease; /* Abort if no lease */ 21 char abort_if_no_lease; /* Abort if no lease */
22 char background_if_no_lease; /* Fork to background if no lease */ 22 char background_if_no_lease; /* Fork to background if no lease */
23 const char *interface; /* The name of the interface to use */ 23 const char *interface; /* The name of the interface to use */
24 char *pidfile; /* Optionally store the process ID */ 24 char *pidfile; /* Optionally store the process ID */
25 const char *script; /* User script to run at dhcp events */ 25 const char *script; /* User script to run at dhcp events */
26 uint8_t *clientid; /* Optional client id to use */ 26 uint8_t *clientid; /* Optional client id to use */
27 uint8_t *vendorclass; /* Optional vendor class-id to use */ 27 uint8_t *vendorclass; /* Optional vendor class-id to use */
28 uint8_t *hostname; /* Optional hostname to use */ 28 uint8_t *hostname; /* Optional hostname to use */