udhcp: ifdef out unused members
authorDenis Vlasenko <vda.linux@googlemail.com>
Mon, 4 Feb 2008 13:23:53 +0000 (13:23 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Mon, 4 Feb 2008 13:23:53 +0000 (13:23 -0000)
networking/udhcp/dhcpc.h
networking/udhcp/dhcpd.h

index 4b8f3ec9870a845c4a78e2ec6607c7e217b0245c..d0fde73022ed30186fd7b079a50ac9e8fa3f6a57 100644 (file)
@@ -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) */
 };
index fe45ca3121b69c2f392c0e09f9423f84a1c15944..d97c8b8f70047108baea37457f7b6d843312e8ec 100644 (file)
@@ -28,7 +28,9 @@ struct static_lease {
 
 struct server_config_t {
        uint32_t server;                /* Our IP, in network order */
+#if ENABLE_FEATURE_UDHCP_PORT
        uint16_t port;
+#endif
        /* start,end are in host order: we need to compare start <= ip <= end */
        uint32_t start_ip;              /* Start address of leases, in host order */
        uint32_t end_ip;                /* End of leases, in host order */