Zephyr API 3.6.99
|
Network configuration library . More...
Macros | |
#define | NET_CONFIG_NEED_ROUTER 0x00000001 |
Application needs routers to be set so that connectivity to remote network is possible. | |
#define | NET_CONFIG_NEED_IPV6 0x00000002 |
Application needs IPv6 subsystem configured and initialized. | |
#define | NET_CONFIG_NEED_IPV4 0x00000004 |
Application needs IPv4 subsystem configured and initialized. | |
Functions | |
int | net_config_init (const char *app_info, uint32_t flags, int32_t timeout) |
Initialize this network application. | |
int | net_config_init_by_iface (struct net_if *iface, const char *app_info, uint32_t flags, int32_t timeout) |
Initialize this network application using a specific network interface. | |
int | net_config_init_app (const struct device *dev, const char *app_info) |
Initialize this network application. | |
Network configuration library .
#define NET_CONFIG_NEED_IPV4 0x00000004 |
#include <zephyr/net/net_config.h>
Application needs IPv4 subsystem configured and initialized.
Typically this means that the device has IPv4 address set.
#define NET_CONFIG_NEED_IPV6 0x00000002 |
#include <zephyr/net/net_config.h>
Application needs IPv6 subsystem configured and initialized.
Typically this means that the device has IPv6 address set.
#define NET_CONFIG_NEED_ROUTER 0x00000001 |
#include <zephyr/net/net_config.h>
Application needs routers to be set so that connectivity to remote network is possible.
For IPv6 networks, this means that the device should receive IPv6 router advertisement message before continuing.
#include <zephyr/net/net_config.h>
Initialize this network application.
This will call net_config_init_by_iface() with NULL network interface.
app_info | String describing this application. |
flags | Flags related to services needed by the client. |
timeout | How long to wait the network setup before continuing the startup. |
int net_config_init_app | ( | const struct device * | dev, |
const char * | app_info ) |
#include <zephyr/net/net_config.h>
Initialize this network application.
If CONFIG_NET_CONFIG_AUTO_INIT is set, then this function is called automatically when the device boots. If that is not desired, unset the config option and call the function manually when the application starts.
dev | Network device to use. The function will figure out what network interface to use based on the device. If the device is NULL, then default network interface is used by the function. |
app_info | String describing this application. |
int net_config_init_by_iface | ( | struct net_if * | iface, |
const char * | app_info, | ||
uint32_t | flags, | ||
int32_t | timeout ) |
#include <zephyr/net/net_config.h>
Initialize this network application using a specific network interface.
If network interface is set to NULL, then the default one is used in the configuration.
iface | Initialize networking using this network interface. |
app_info | String describing this application. |
flags | Flags related to services needed by the client. |
timeout | How long to wait the network setup before continuing the startup. |