dhcpc.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Licensed under GPLv2, see file LICENSE in this source tree.
  4. */
  5. #ifndef UDHCP_DHCPC_H
  6. #define UDHCP_DHCPC_H 1
  7. PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
  8. struct client_data_t {
  9. uint8_t client_mac[6]; /* Our mac address */
  10. IF_FEATURE_UDHCP_PORT(uint16_t port;)
  11. int ifindex; /* Index number of the interface to use */
  12. uint32_t xid;
  13. uint8_t opt_mask[256 / 8]; /* Bitmask of options to send (-O option) */
  14. // ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ TODO: DHCPv6 has 16-bit option numbers
  15. const char *interface; /* The name of the interface to use */
  16. char *pidfile; /* Optionally store the process ID */
  17. const char *script; /* User script to run at dhcp events */
  18. struct option_set *options; /* list of DHCP options to send to server */
  19. llist_t *envp; /* list of DHCP options used for env vars */
  20. unsigned first_secs;
  21. unsigned last_secs;
  22. int sockfd;
  23. smallint listen_mode;
  24. smallint state;
  25. } FIX_ALIASING;
  26. /* server_config sits in 1st half of bb_common_bufsiz1 */
  27. #define client_data (*(struct client_data_t*)(&bb_common_bufsiz1[COMMON_BUFSIZE / 2]))
  28. #if ENABLE_FEATURE_UDHCP_PORT
  29. #define CLIENT_PORT (client_data.port)
  30. #define CLIENT_PORT6 (client_data.port)
  31. #else
  32. #define CLIENT_PORT 68
  33. #define CLIENT_PORT6 546
  34. #endif
  35. POP_SAVED_FUNCTION_VISIBILITY
  36. #endif