dhcpv4.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /** @file
  2. * @brief DHCPv4 Client Handler
  3. */
  4. /*
  5. * Copyright (c) 2016 Intel Corporation
  6. *
  7. * SPDX-License-Identifier: Apache-2.0
  8. */
  9. #ifndef ZEPHYR_INCLUDE_NET_DHCPV4_H_
  10. #define ZEPHYR_INCLUDE_NET_DHCPV4_H_
  11. #include <sys/slist.h>
  12. #include <zephyr/types.h>
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. /**
  17. * @brief DHCPv4
  18. * @defgroup dhcpv4 DHCPv4
  19. * @ingroup networking
  20. * @{
  21. */
  22. /** @cond INTERNAL_HIDDEN */
  23. /** Current state of DHCPv4 client address negotiation.
  24. *
  25. * Additions removals and reorders in this definition must be
  26. * reflected within corresponding changes to net_dhcpv4_state_name.
  27. */
  28. enum net_dhcpv4_state {
  29. NET_DHCPV4_DISABLED,
  30. NET_DHCPV4_INIT,
  31. NET_DHCPV4_SELECTING,
  32. NET_DHCPV4_REQUESTING,
  33. NET_DHCPV4_RENEWING,
  34. NET_DHCPV4_REBINDING,
  35. NET_DHCPV4_BOUND,
  36. } __packed;
  37. /** @endcond */
  38. /**
  39. * @brief Start DHCPv4 client on an iface
  40. *
  41. * @details Start DHCPv4 client on a given interface. DHCPv4 client
  42. * will start negotiation for IPv4 address. Once the negotiation is
  43. * success IPv4 address details will be added to interface.
  44. *
  45. * @param iface A valid pointer on an interface
  46. */
  47. void net_dhcpv4_start(struct net_if *iface);
  48. /**
  49. * @brief Stop DHCPv4 client on an iface
  50. *
  51. * @details Stop DHCPv4 client on a given interface. DHCPv4 client
  52. * will remove all configuration obtained from a DHCP server from the
  53. * interface and stop any further negotiation with the server.
  54. *
  55. * @param iface A valid pointer on an interface
  56. */
  57. void net_dhcpv4_stop(struct net_if *iface);
  58. /** @cond INTERNAL_HIDDEN */
  59. /**
  60. * @brief DHCPv4 state name
  61. *
  62. * @internal
  63. */
  64. const char *net_dhcpv4_state_name(enum net_dhcpv4_state state);
  65. /** @endcond */
  66. /**
  67. * @}
  68. */
  69. #ifdef __cplusplus
  70. }
  71. #endif
  72. #endif /* ZEPHYR_INCLUDE_NET_DHCPV4_H_ */