Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/networking/udhcp/dhcpd.h

    r2725 r3621  
    5858} FIX_ALIASING;
    5959
    60 #define server_config (*(struct server_config_t*)&bb_common_bufsiz1)
     60#define server_config (*(struct server_config_t*)bb_common_bufsiz1)
    6161/* client_config sits in 2nd half of bb_common_bufsiz1 */
    6262
    6363#if ENABLE_FEATURE_UDHCP_PORT
    64 #define SERVER_PORT (server_config.port)
     64#define SERVER_PORT  (server_config.port)
     65#define SERVER_PORT6 (server_config.port)
    6566#else
    66 #define SERVER_PORT 67
     67#define SERVER_PORT  67
     68#define SERVER_PORT6 547
    6769#endif
    6870
     
    99101struct dyn_lease *find_lease_by_mac(const uint8_t *mac) FAST_FUNC;
    100102struct dyn_lease *find_lease_by_nip(uint32_t nip) FAST_FUNC;
    101 uint32_t find_free_or_expired_nip(const uint8_t *safe_mac) FAST_FUNC;
     103uint32_t find_free_or_expired_nip(const uint8_t *safe_mac, unsigned arpping_ms) FAST_FUNC;
    102104
    103105
Note: See TracChangeset for help on using the changeset viewer.