hostname.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /** @file
  2. * @brief Hostname configuration definitions
  3. */
  4. /*
  5. * Copyright (c) 2017 Intel Corporation
  6. *
  7. * SPDX-License-Identifier: Apache-2.0
  8. */
  9. #ifndef ZEPHYR_INCLUDE_NET_HOSTNAME_H_
  10. #define ZEPHYR_INCLUDE_NET_HOSTNAME_H_
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. /**
  15. * @brief Network hostname configuration library
  16. * @defgroup net_hostname Network Hostname Library
  17. * @ingroup networking
  18. * @{
  19. */
  20. #define NET_HOSTNAME_MAX_LEN \
  21. (sizeof(CONFIG_NET_HOSTNAME) - 1 + \
  22. (IS_ENABLED(CONFIG_NET_HOSTNAME_UNIQUE) ? \
  23. sizeof("0011223344556677") - 1 : 0))
  24. /**
  25. * @brief Get the device hostname
  26. *
  27. * @details Return pointer to device hostname.
  28. *
  29. * @return Pointer to hostname or NULL if not set.
  30. */
  31. #if defined(CONFIG_NET_HOSTNAME_ENABLE)
  32. const char *net_hostname_get(void);
  33. #else
  34. static inline const char *net_hostname_get(void)
  35. {
  36. return "zephyr";
  37. }
  38. #endif /* CONFIG_NET_HOSTNAME_ENABLE */
  39. /**
  40. * @brief Initialize and set the device hostname.
  41. *
  42. */
  43. #if defined(CONFIG_NET_HOSTNAME_ENABLE)
  44. void net_hostname_init(void);
  45. #else
  46. static inline void net_hostname_init(void)
  47. {
  48. }
  49. #endif /* CONFIG_NET_HOSTNAME_ENABLE */
  50. /**
  51. * @brief Set the device hostname postfix
  52. *
  53. * @details Set the device hostname to some value. This is only used if
  54. * CONFIG_NET_HOSTNAME_UNIQUE is set.
  55. *
  56. * @param hostname_postfix Usually link address. The function will convert this
  57. * to a string.
  58. * @param postfix_len Length of the hostname_postfix array.
  59. *
  60. * @return 0 if ok, <0 if error
  61. */
  62. #if defined(CONFIG_NET_HOSTNAME_UNIQUE)
  63. int net_hostname_set_postfix(const uint8_t *hostname_postfix,
  64. int postfix_len);
  65. #else
  66. static inline int net_hostname_set_postfix(const uint8_t *hostname_postfix,
  67. int postfix_len)
  68. {
  69. return -EMSGSIZE;
  70. }
  71. #endif /* CONFIG_NET_HOSTNAME_UNIQUE */
  72. /**
  73. * @}
  74. */
  75. #ifdef __cplusplus
  76. }
  77. #endif
  78. #endif /* ZEPHYR_INCLUDE_NET_HOSTNAME_H_ */