aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/dhcpc.h
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-02-04 13:23:53 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-02-04 13:23:53 +0000
commitb386c1c614a94b847da7d059367bc9d4fcb33f14 (patch)
tree4a27e3a393dc08cd03ee88ce5db185b449c130ac /networking/udhcp/dhcpc.h
parentd55fe3e595eb0aad60484d273e251cfee4ef8aa5 (diff)
downloadbusybox-b386c1c614a94b847da7d059367bc9d4fcb33f14.tar.gz
udhcp: ifdef out unused members
Diffstat (limited to 'networking/udhcp/dhcpc.h')
-rw-r--r--networking/udhcp/dhcpc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/networking/udhcp/dhcpc.h b/networking/udhcp/dhcpc.h
index 4b8f3ec98..d0fde7302 100644
--- a/networking/udhcp/dhcpc.h
+++ b/networking/udhcp/dhcpc.h
@@ -29,7 +29,9 @@ struct client_config_t {
uint8_t *hostname; /* Optional hostname to use */
uint8_t *fqdn; /* Optional fully qualified domain name to use */
int ifindex; /* Index number of the interface to use */
+#if ENABLE_FEATURE_UDHCP_PORT
uint16_t port;
+#endif
uint8_t arp[6]; /* Our arp address */
uint8_t opt_mask[256 / 8]; /* Bitmask of options to send (-O option) */
};