diff options
author | Denys Vlasenko | 2021-06-02 15:51:50 +0200 |
---|---|---|
committer | Denys Vlasenko | 2021-06-02 15:51:50 +0200 |
commit | 949e9621d10faada3bb55a4aa206df44e7d39ae8 (patch) | |
tree | 63778eac77dc9b9fb6f30410a581d87f7ae2b707 /networking/udhcp/common.h | |
parent | 698cdef538f51bb85b68d591b1e42eb6b04d891c (diff) | |
download | busybox-949e9621d10faada3bb55a4aa206df44e7d39ae8.zip busybox-949e9621d10faada3bb55a4aa206df44e7d39ae8.tar.gz |
udhcpc: get rid of client_data.fqdn field
function old new delta
attach_option 253 276 +23
udhcpc_main 2582 2588 +6
udhcpc6_main 2579 2571 -8
add_client_options 175 158 -17
udhcp_insert_new_option 169 138 -31
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 2/3 up/down: 29/-56) Total: -27 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/common.h')
-rw-r--r-- | networking/udhcp/common.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/networking/udhcp/common.h b/networking/udhcp/common.h index e5af628..48a2379 100644 --- a/networking/udhcp/common.h +++ b/networking/udhcp/common.h @@ -321,12 +321,11 @@ void udhcp_dump_packet(struct dhcp_packet *packet) FAST_FUNC; int FAST_FUNC udhcp_str2nip(const char *str, void *arg); #if !ENABLE_UDHCPC6 -#define udhcp_insert_new_option(opt_list, code, buffer, length, dhcpv6) \ - udhcp_insert_new_option(opt_list, code, buffer, length) +#define udhcp_insert_new_option(opt_list, code, length, dhcpv6) \ + udhcp_insert_new_option(opt_list, code, length) #endif void* FAST_FUNC udhcp_insert_new_option(struct option_set **opt_list, unsigned code, - const void *buffer, unsigned length, bool dhcpv6); |