aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-11-08 17:40:23 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-11-08 17:40:23 +0000
commitabbd363261cf3a9b18e611c524f8103fb68f539b (patch)
tree33545409717701ac3cc40d2a60f80a697835620c /networking
parent53bd4015aa7ec79b8f45edd30555ea7b7235d7ca (diff)
downloadbusybox-w32-abbd363261cf3a9b18e611c524f8103fb68f539b.tar.gz
busybox-w32-abbd363261cf3a9b18e611c524f8103fb68f539b.tar.bz2
busybox-w32-abbd363261cf3a9b18e611c524f8103fb68f539b.zip
xreadlink: code shrink
udhcp: add missing tryagain member to client_config function old new delta xmalloc_readlink_follow 169 154 -15 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/1 up/down: 0/-15) Total: -15 bytes
Diffstat (limited to 'networking')
-rw-r--r--networking/udhcp/dhcpc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/networking/udhcp/dhcpc.h b/networking/udhcp/dhcpc.h
index 8da1dd8e1..72a8bd94f 100644
--- a/networking/udhcp/dhcpc.h
+++ b/networking/udhcp/dhcpc.h
@@ -30,6 +30,7 @@ struct client_config_t {
30 int ifindex; /* Index number of the interface to use */ 30 int ifindex; /* Index number of the interface to use */
31 int retries; /* Max number of request packets */ 31 int retries; /* Max number of request packets */
32 int timeout; /* Number of seconds to try to get a lease */ 32 int timeout; /* Number of seconds to try to get a lease */
33 int tryagain; /* Number of seconds to try to get a lease */
33 uint8_t arp[6]; /* Our arp address */ 34 uint8_t arp[6]; /* Our arp address */
34}; 35};
35 36