From 68af8e7a084317191effa9b257483a50d994b11c Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 22 Nov 2007 21:41:14 +0000 Subject: udhcpc: remove -W option, -A can be reused for that help texts: trimmed a bit static.udhcpc_longopts 227 209 -18 udhcpc_main 2633 2590 -43 packed_usage 22927 22871 -56 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/3 up/down: 0/-117) Total: -117 bytes --- networking/udhcp/dhcpc.c | 21 ++++++--------------- 1 file changed, 6 insertions(+), 15 deletions(-) (limited to 'networking/udhcp/dhcpc.c') diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c index 234ecfd13..6ade1ee34 100644 --- a/networking/udhcp/dhcpc.c +++ b/networking/udhcp/dhcpc.c @@ -145,13 +145,12 @@ int udhcpc_main(int argc, char **argv) { uint8_t *temp, *message; char *str_c, *str_V, *str_h, *str_F, *str_r, *str_T, *str_A, *str_t; - int tryagain_timeout = 60; - int discover_timeout = 3; - int discover_retries = 3; #if ENABLE_FEATURE_UDHCPC_ARPING - int decline_wait = 10; char *str_W; #endif + int tryagain_timeout = 20; + int discover_timeout = 3; + int discover_retries = 3; uint32_t xid = 0; uint32_t lease_seconds = 0; /* can be given as 32-bit quantity */ unsigned t1 = 0, t2 = 0; /* what a wonderful names */ @@ -199,7 +198,6 @@ int udhcpc_main(int argc, char **argv) "foreground\0" No_argument "f" "background\0" No_argument "b" "hostname\0" Required_argument "H" - "hostname\0" Required_argument "h" "fqdn\0" Required_argument "F" "interface\0" Required_argument "i" "now\0" No_argument "n" @@ -215,7 +213,6 @@ int udhcpc_main(int argc, char **argv) "syslog\0" No_argument "S" #if ENABLE_FEATURE_UDHCPC_ARPING "arping\0" No_argument "a" - "wait\0" Required_argument "W" #endif ; #endif @@ -224,8 +221,7 @@ int udhcpc_main(int argc, char **argv) client_config.script = DEFAULT_SCRIPT; /* Parse command line */ - opt_complementary = "c--C:C--c" // mutually exclusive - ":hH:Hh"; // -h and -H are the same + opt_complementary = "c--C:C--c"; // mutually exclusive #if ENABLE_GETOPT_LONG applet_long_options = udhcpc_longopts; #endif @@ -246,7 +242,7 @@ int udhcpc_main(int argc, char **argv) client_config.foreground = 1; if (opt & OPT_b) client_config.background_if_no_lease = 1; - if (opt & OPT_h) + if (opt & (OPT_h|OPT_H)) client_config.hostname = alloc_dhcp_option(DHCP_HOST_NAME, str_h, 0); if (opt & OPT_F) { client_config.fqdn = alloc_dhcp_option(DHCP_FQDN, str_F, 3); @@ -287,11 +283,6 @@ int udhcpc_main(int argc, char **argv) logmode |= LOGMODE_SYSLOG; } -#if ENABLE_FEATURE_UDHCPC_ARPING - if (opt & OPT_W) - decline_wait = xatou_range(str_W, 10, INT_MAX); -#endif - if (read_interface(client_config.interface, &client_config.ifindex, NULL, client_config.arp)) return 1; @@ -536,7 +527,7 @@ int udhcpc_main(int argc, char **argv) change_listen_mode(LISTEN_RAW); state = INIT_SELECTING; requested_ip = 0; - timeout = decline_wait; + timeout = tryagain_timeout; packet_num = 0; continue; /* back to main loop */ } -- cgit v1.2.3