diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2019-09-24 14:01:00 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2019-09-24 14:01:00 +0200 |
commit | 11e024aa86f23a6dd86cdd58b8890756708cd708 (patch) | |
tree | 818fcf800385a218fab7175dd3e89c1d076c5b18 /networking/udhcp/dhcpc.h | |
parent | c58d785b9d0a337ff884002c4cef5283f901c9e4 (diff) | |
download | busybox-w32-11e024aa86f23a6dd86cdd58b8890756708cd708.tar.gz busybox-w32-11e024aa86f23a6dd86cdd58b8890756708cd708.tar.bz2 busybox-w32-11e024aa86f23a6dd86cdd58b8890756708cd708.zip |
udhcpc6: add ELAPSED_TIME option to outgoing packets
function old new delta
init_d6_packet 53 121 +68
udhcpc_main 2577 2582 +5
udhcpc6_main 2593 2597 +4
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 3/0 up/down: 77/0) Total: 77 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/dhcpc.h')
-rw-r--r-- | networking/udhcp/dhcpc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/udhcp/dhcpc.h b/networking/udhcp/dhcpc.h index 42fe71a36..b407a6cdb 100644 --- a/networking/udhcp/dhcpc.h +++ b/networking/udhcp/dhcpc.h | |||
@@ -22,8 +22,8 @@ struct client_data_t { | |||
22 | uint8_t *hostname; /* Optional hostname to use */ | 22 | uint8_t *hostname; /* Optional hostname to use */ |
23 | uint8_t *fqdn; /* Optional fully qualified domain name to use */ | 23 | uint8_t *fqdn; /* Optional fully qualified domain name to use */ |
24 | 24 | ||
25 | uint16_t first_secs; | 25 | unsigned first_secs; |
26 | uint16_t last_secs; | 26 | unsigned last_secs; |
27 | 27 | ||
28 | int sockfd; | 28 | int sockfd; |
29 | smallint listen_mode; | 29 | smallint listen_mode; |