aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/dhcpc.h
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2019-05-26 15:01:13 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2019-05-26 15:03:05 +0200
commitbcb1fc3e6ca6fe902610f507eaf9b0b58a5c583a (patch)
tree7d591d16007a2a162e13b1f601fc33c9115299e8 /networking/udhcp/dhcpc.h
parent818d9e02f2de87aef3ba72c2b3bcec6eed4ef974 (diff)
downloadbusybox-bcb1fc3e6ca6fe902610f507eaf9b0b58a5c583a.tar.gz
udhcp: rename client_config to client_data, server_config to server_data
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/dhcpc.h')
-rw-r--r--networking/udhcp/dhcpc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/networking/udhcp/dhcpc.h b/networking/udhcp/dhcpc.h
index 2618b12b5..42fe71a36 100644
--- a/networking/udhcp/dhcpc.h
+++ b/networking/udhcp/dhcpc.h
@@ -7,7 +7,7 @@
PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
-struct client_config_t {
+struct client_data_t {
uint8_t client_mac[6]; /* Our mac address */
IF_FEATURE_UDHCP_PORT(uint16_t port;)
int ifindex; /* Index number of the interface to use */
@@ -31,11 +31,11 @@ struct client_config_t {
} FIX_ALIASING;
/* server_config sits in 1st half of bb_common_bufsiz1 */
-#define client_config (*(struct client_config_t*)(&bb_common_bufsiz1[COMMON_BUFSIZE / 2]))
+#define client_data (*(struct client_data_t*)(&bb_common_bufsiz1[COMMON_BUFSIZE / 2]))
#if ENABLE_FEATURE_UDHCP_PORT
-#define CLIENT_PORT (client_config.port)
-#define CLIENT_PORT6 (client_config.port)
+#define CLIENT_PORT (client_data.port)
+#define CLIENT_PORT6 (client_data.port)
#else
#define CLIENT_PORT 68
#define CLIENT_PORT6 546