net_config.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /** @file
  2. * @brief Routines for network subsystem initialization.
  3. */
  4. /*
  5. * Copyright (c) 2017 Intel Corporation
  6. *
  7. * SPDX-License-Identifier: Apache-2.0
  8. */
  9. #ifndef ZEPHYR_INCLUDE_NET_NET_CONFIG_H_
  10. #define ZEPHYR_INCLUDE_NET_NET_CONFIG_H_
  11. #include <zephyr/types.h>
  12. #include <device.h>
  13. #include <net/net_if.h>
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. /**
  18. * @brief Network configuration library
  19. * @defgroup net_config Network Configuration Library
  20. * @ingroup networking
  21. * @{
  22. */
  23. /* Flags that tell what kind of functionality is needed by the client. */
  24. /**
  25. * @brief Application needs routers to be set so that connectivity to remote
  26. * network is possible. For IPv6 networks, this means that the device should
  27. * receive IPv6 router advertisement message before continuing.
  28. */
  29. #define NET_CONFIG_NEED_ROUTER 0x00000001
  30. /**
  31. * @brief Application needs IPv6 subsystem configured and initialized.
  32. * Typically this means that the device has IPv6 address set.
  33. */
  34. #define NET_CONFIG_NEED_IPV6 0x00000002
  35. /**
  36. * @brief Application needs IPv4 subsystem configured and initialized.
  37. * Typically this means that the device has IPv4 address set.
  38. */
  39. #define NET_CONFIG_NEED_IPV4 0x00000004
  40. /**
  41. * @brief Initialize this network application.
  42. *
  43. * @details This will call net_config_init_by_iface() with NULL network
  44. * interface.
  45. *
  46. * @param app_info String describing this application.
  47. * @param flags Flags related to services needed by the client.
  48. * @param timeout How long to wait the network setup before continuing
  49. * the startup.
  50. *
  51. * @return 0 if ok, <0 if error.
  52. */
  53. int net_config_init(const char *app_info, uint32_t flags, int32_t timeout);
  54. /**
  55. * @brief Initialize this network application using a specific network
  56. * interface.
  57. *
  58. * @details If network interface is set to NULL, then the default one
  59. * is used in the configuration.
  60. *
  61. * @param iface Initialize networking using this network interface.
  62. * @param app_info String describing this application.
  63. * @param flags Flags related to services needed by the client.
  64. * @param timeout How long to wait the network setup before continuing
  65. * the startup.
  66. *
  67. * @return 0 if ok, <0 if error.
  68. */
  69. int net_config_init_by_iface(struct net_if *iface, const char *app_info,
  70. uint32_t flags, int32_t timeout);
  71. /**
  72. * @brief Initialize this network application.
  73. *
  74. * @details If CONFIG_NET_CONFIG_AUTO_INIT is set, then this function is called
  75. * automatically when the device boots. If that is not desired, unset
  76. * the config option and call the function manually when the
  77. * application starts.
  78. *
  79. * @param dev Network device to use. The function will figure out what
  80. * network interface to use based on the device. If the device is NULL,
  81. * then default network interface is used by the function.
  82. * @param app_info String describing this application.
  83. *
  84. * @return 0 if ok, <0 if error.
  85. */
  86. int net_config_init_app(const struct device *dev, const char *app_info);
  87. /**
  88. * @}
  89. */
  90. #ifdef __cplusplus
  91. }
  92. #endif
  93. #endif /* ZEPHYR_INCLUDE_NET_NET_CONFIG_H_ */