12#ifndef ZEPHYR_INCLUDE_NET_NET_IF_H_
13#define ZEPHYR_INCLUDE_NET_NET_IF_H_
33#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
36#if defined(CONFIG_NET_DHCPV6) && defined(CONFIG_NET_NATIVE_IPV6)
39#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
61#if defined(CONFIG_NET_NATIVE_IPV6)
71#if defined(CONFIG_NET_NATIVE_IPV6)
72#if defined(CONFIG_NET_IPV6_PE)
91#if defined(CONFIG_NET_IPV6_DAD)
106#if defined(CONFIG_NET_IPV4_ACD)
126#if defined(CONFIG_NET_IPV6_DAD) || defined(CONFIG_NET_IPV4_ACD)
160#if defined(CONFIG_NET_IPV4_IGMPV3)
162 struct net_addr sources[CONFIG_NET_IF_MCAST_IPV4_SOURCE_COUNT];
309#if defined(CONFIG_NET_OFFLOAD)
314#if defined(CONFIG_NET_NATIVE_IPV6)
315#define NET_IF_MAX_IPV6_ADDR CONFIG_NET_IF_UNICAST_IPV6_ADDR_COUNT
316#define NET_IF_MAX_IPV6_MADDR CONFIG_NET_IF_MCAST_IPV6_ADDR_COUNT
317#define NET_IF_MAX_IPV6_PREFIX CONFIG_NET_IF_IPV6_PREFIX_COUNT
319#define NET_IF_MAX_IPV6_ADDR 0
320#define NET_IF_MAX_IPV6_MADDR 0
321#define NET_IF_MAX_IPV6_PREFIX 0
345#if defined(CONFIG_NET_IPV6_PE)
353#if defined(CONFIG_NET_IPV6_ND) && defined(CONFIG_NET_NATIVE_IPV6)
371#if defined(CONFIG_NET_DHCPV6) && defined(CONFIG_NET_NATIVE_IPV6)
373struct net_if_dhcpv6 {
378 struct net_dhcpv6_duid_storage clientid;
381 struct net_dhcpv6_duid_storage serverid;
384 enum net_dhcpv6_state
state;
436#if defined(CONFIG_NET_NATIVE_IPV4)
437#define NET_IF_MAX_IPV4_ADDR CONFIG_NET_IF_UNICAST_IPV4_ADDR_COUNT
438#define NET_IF_MAX_IPV4_MADDR CONFIG_NET_IF_MCAST_IPV4_ADDR_COUNT
440#define NET_IF_MAX_IPV4_ADDR 0
441#define NET_IF_MAX_IPV4_MADDR 0
474#if defined(CONFIG_NET_IPV4_ACD)
480#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
481struct net_if_dhcpv4 {
515 enum net_dhcpv4_state
state;
521 struct in_addr request_server_addr;
524 struct in_addr response_src_addr;
526#ifdef CONFIG_NET_DHCPV4_OPTION_NTP_SERVER
533#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
534struct net_if_ipv4_autoconf {
549#define NET_IF_MAX_CONFIGS 1
556#if defined(CONFIG_NET_NATIVE_IPV6)
560#if defined(CONFIG_NET_NATIVE_IPV4)
569#if defined(CONFIG_NET_IP)
574#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
575 struct net_if_dhcpv4 dhcpv4;
578#if defined(CONFIG_NET_DHCPV6) && defined(CONFIG_NET_NATIVE_IPV6)
579 struct net_if_dhcpv6 dhcpv6;
582#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
583 struct net_if_ipv4_autoconf ipv4auto;
586#if defined(CONFIG_NET_L2_VIRTUAL)
594#if defined(CONFIG_NET_INTERFACE_NAME)
599 char name[CONFIG_NET_INTERFACE_NAME_LEN + 1];
661#if defined(CONFIG_NET_OFFLOAD)
667 struct net_offload *offload;
673#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
695#if defined(CONFIG_NET_STATISTICS_PER_INTERFACE)
703#if defined(CONFIG_NET_POWER_MANAGEMENT)
734static inline void net_if_lock(
struct net_if *iface)
741static inline void net_if_unlock(
struct net_if *iface)
751static inline void net_if_tx_lock(
struct net_if *iface)
762static inline void net_if_tx_unlock(
struct net_if *iface)
785 NET_ASSERT(iface->
if_dev);
802 NET_ASSERT(iface->
if_dev);
817 NET_ASSERT(iface->
if_dev);
834 NET_ASSERT(iface->
if_dev);
851 NET_ASSERT(iface->
if_dev);
872 NET_ASSERT(iface->
if_dev);
891 NET_ASSERT(iface->
if_dev);
915 if (!iface || !iface->
if_dev) {
942 NET_ASSERT(iface->
if_dev);
957 NET_ASSERT(iface->
if_dev);
979#if defined(CONFIG_NET_OFFLOAD)
980 return (iface != NULL && iface->
if_dev != NULL &&
981 iface->
if_dev->offload != NULL);
1007#if defined(CONFIG_NET_OFFLOAD)
1009 NET_ASSERT(iface->
if_dev);
1011 return iface->
if_dev->offload;
1028#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
1030 NET_ASSERT(iface->
if_dev);
1032 return (iface->
if_dev->socket_offload != NULL);
1049#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
1051 NET_ASSERT(iface->
if_dev);
1053 iface->
if_dev->socket_offload = socket_offload;
1056 ARG_UNUSED(socket_offload);
1069#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
1071 NET_ASSERT(iface->
if_dev);
1073 return iface->
if_dev->socket_offload;
1091 NET_ASSERT(iface->
if_dev);
1115#if defined(CONFIG_NET_IPV6_DAD) && defined(CONFIG_NET_NATIVE_IPV6)
1137#if defined(CONFIG_NET_IPV6_ND) && defined(CONFIG_NET_NATIVE_IPV6)
1158#if defined(CONFIG_NET_IPV6_ND) && defined(CONFIG_NET_NATIVE_IPV6)
1165 ARG_UNUSED(ipv6_addr);
1171static inline int net_if_set_link_addr_unlocked(
struct net_if *iface,
1188int net_if_set_link_addr_locked(
struct net_if *iface,
1192#if CONFIG_NET_IF_LOG_LEVEL >= LOG_LEVEL_DBG
1193extern int net_if_addr_unref_debug(
struct net_if *iface,
1197 const char *caller,
int line);
1198#define net_if_addr_unref(iface, family, addr, ifaddr) \
1199 net_if_addr_unref_debug(iface, family, addr, ifaddr, __func__, __LINE__)
1206#define net_if_addr_ref(iface, family, addr) \
1207 net_if_addr_ref_debug(iface, family, addr, __func__, __LINE__)
1209extern int net_if_addr_unref(
struct net_if *iface,
1235#if defined(CONFIG_NET_RAW_MODE)
1236 return net_if_set_link_addr_unlocked(iface, addr, len, type);
1238 return net_if_set_link_addr_locked(iface, addr, len, type);
1251 if (iface == NULL) {
1255 NET_ASSERT(iface->
if_dev);
1269 if (iface == NULL) {
1273 NET_ASSERT(iface->
if_dev);
1363#if defined(CONFIG_NET_L2_IEEE802154)
1370static inline struct net_if *net_if_get_ieee802154(
void)
1581 const struct net_addr *addr,
1761#if defined(CONFIG_NET_NATIVE_IPV6)
1766 return &router->
address.in6_addr;
1859static inline void net_ipv6_set_hop_limit(
struct net_if *
iface,
1894#if defined(CONFIG_NET_NATIVE_IPV6)
1901 iface->
config.ip.ipv6->base_reachable_time = reachable_time;
1904 ARG_UNUSED(reachable_time);
1918#if defined(CONFIG_NET_NATIVE_IPV6)
1949#if defined(CONFIG_NET_NATIVE_IPV6)
1969#if defined(CONFIG_NET_NATIVE_IPV6)
1976 iface->
config.ip.ipv6->retrans_timer = retrans_timer;
1979 ARG_UNUSED(retrans_timer);
1992#if defined(CONFIG_NET_NATIVE_IPV6)
2017#if defined(CONFIG_NET_NATIVE_IPV6)
2044#if defined(CONFIG_NET_NATIVE_IPV6)
2069#if defined(CONFIG_NET_NATIVE_IPV6)
2350#if defined(CONFIG_NET_NATIVE_IPV4)
2355 return &router->
address.in_addr;
2446#if defined(CONFIG_NET_NATIVE_IPV4)
2469#if defined(CONFIG_NET_NATIVE_IPV4)
2539 const struct in_addr *netmask);
2552 const struct in_addr *netmask);
2565 const struct in_addr *netmask);
2578 const struct in_addr *netmask);
2669#define NET_IF_CHECKSUM_NONE_BIT 0
2670#define NET_IF_CHECKSUM_IPV4_HEADER_BIT BIT(0)
2671#define NET_IF_CHECKSUM_IPV4_ICMP_BIT BIT(1)
2673#define NET_IF_CHECKSUM_IPV6_HEADER_BIT BIT(10)
2674#define NET_IF_CHECKSUM_IPV6_ICMP_BIT BIT(11)
2676#define NET_IF_CHECKSUM_TCP_BIT BIT(21)
2677#define NET_IF_CHECKSUM_UDP_BIT BIT(22)
2689 NET_IF_CHECKSUM_TCP_BIT,
2692 NET_IF_CHECKSUM_UDP_BIT,
2699 NET_IF_CHECKSUM_TCP_BIT,
2702 NET_IF_CHECKSUM_UDP_BIT,
2890#if defined(CONFIG_NET_PKT_TIMESTAMP) && defined(CONFIG_NET_NATIVE)
2898typedef void (*net_if_timestamp_callback_t)(
struct net_pkt *pkt);
2908struct net_if_timestamp_cb {
2923 net_if_timestamp_callback_t cb;
2936void net_if_register_timestamp_cb(
struct net_if_timestamp_cb *handle,
2939 net_if_timestamp_callback_t cb);
2946void net_if_unregister_timestamp_cb(
struct net_if_timestamp_cb *handle);
2953void net_if_call_timestamp_cb(
struct net_pkt *pkt);
2960void net_if_add_tx_timestamp(
struct net_pkt *pkt);
2972#if defined(CONFIG_NET_PROMISCUOUS_MODE)
2988#if defined(CONFIG_NET_PROMISCUOUS_MODE)
3005#if defined(CONFIG_NET_PROMISCUOUS_MODE)
3027#if defined(CONFIG_NET_POWER_MANAGEMENT)
3028 return !!iface->tx_pending;
3036#ifdef CONFIG_NET_POWER_MANAGEMENT
3044int net_if_suspend(
struct net_if *iface);
3053int net_if_resume(
struct net_if *iface);
3062bool net_if_is_suspended(
struct net_if *iface);
3138 void (*init)(
struct net_if *iface);
3141#define NET_IF_DHCPV4_INIT \
3142 IF_ENABLED(UTIL_AND(IS_ENABLED(CONFIG_NET_DHCPV4), \
3143 IS_ENABLED(CONFIG_NET_NATIVE_IPV4)), \
3144 (.dhcpv4.state = NET_DHCPV4_DISABLED,))
3146#define NET_IF_DHCPV6_INIT \
3147 IF_ENABLED(UTIL_AND(IS_ENABLED(CONFIG_NET_DHCPV6), \
3148 IS_ENABLED(CONFIG_NET_NATIVE_IPV6)), \
3149 (.dhcpv6.state = NET_DHCPV6_DISABLED,))
3151#define NET_IF_CONFIG_INIT \
3153 IF_ENABLED(CONFIG_NET_IP, (.ip = {},)) \
3154 NET_IF_DHCPV4_INIT \
3155 NET_IF_DHCPV6_INIT \
3158#define NET_IF_GET_NAME(dev_id, sfx) __net_if_##dev_id##_##sfx
3159#define NET_IF_DEV_GET_NAME(dev_id, sfx) __net_if_dev_##dev_id##_##sfx
3161#define NET_IF_GET(dev_id, sfx) \
3162 ((struct net_if *)&NET_IF_GET_NAME(dev_id, sfx))
3164#define NET_IF_INIT(dev_id, sfx, _l2, _mtu, _num_configs) \
3165 static STRUCT_SECTION_ITERABLE(net_if_dev, \
3166 NET_IF_DEV_GET_NAME(dev_id, sfx)) = { \
3167 .dev = &(DEVICE_NAME_GET(dev_id)), \
3168 .l2 = &(NET_L2_GET_NAME(_l2)), \
3169 .l2_data = &(NET_L2_GET_DATA(dev_id, sfx)), \
3171 .flags = {BIT(NET_IF_LOWER_UP)}, \
3173 static Z_DECL_ALIGN(struct net_if) \
3174 NET_IF_GET_NAME(dev_id, sfx)[_num_configs] \
3175 __used __in_section(_net_if, static, \
3177 [0 ... (_num_configs - 1)] = { \
3178 .if_dev = &(NET_IF_DEV_GET_NAME(dev_id, sfx)), \
3179 NET_IF_CONFIG_INIT \
3183#define NET_IF_OFFLOAD_INIT(dev_id, sfx, _mtu) \
3184 static STRUCT_SECTION_ITERABLE(net_if_dev, \
3185 NET_IF_DEV_GET_NAME(dev_id, sfx)) = { \
3186 .dev = &(DEVICE_NAME_GET(dev_id)), \
3188 .l2 = &(NET_L2_GET_NAME(OFFLOADED_NETDEV)), \
3189 .flags = {BIT(NET_IF_LOWER_UP)}, \
3191 static Z_DECL_ALIGN(struct net_if) \
3192 NET_IF_GET_NAME(dev_id, sfx)[NET_IF_MAX_CONFIGS] \
3193 __used __in_section(_net_if, static, \
3195 [0 ... (NET_IF_MAX_CONFIGS - 1)] = { \
3196 .if_dev = &(NET_IF_DEV_GET_NAME(dev_id, sfx)), \
3197 NET_IF_CONFIG_INIT \
3205#define Z_NET_DEVICE_INIT_INSTANCE(node_id, dev_id, name, instance, \
3206 init_fn, pm, data, config, prio, \
3207 api, l2, l2_ctx_type, mtu) \
3208 Z_DEVICE_STATE_DEFINE(dev_id); \
3209 Z_DEVICE_DEFINE(node_id, dev_id, name, init_fn, pm, data, \
3210 config, POST_KERNEL, prio, api, \
3211 &Z_DEVICE_STATE_NAME(dev_id)); \
3212 NET_L2_DATA_INIT(dev_id, instance, l2_ctx_type); \
3213 NET_IF_INIT(dev_id, instance, l2, mtu, NET_IF_MAX_CONFIGS)
3215#define Z_NET_DEVICE_INIT(node_id, dev_id, name, init_fn, pm, data, \
3216 config, prio, api, l2, l2_ctx_type, mtu) \
3217 Z_NET_DEVICE_INIT_INSTANCE(node_id, dev_id, name, 0, init_fn, \
3218 pm, data, config, prio, api, l2, \
3240#define NET_DEVICE_INIT(dev_id, name, init_fn, pm, data, config, prio, \
3241 api, l2, l2_ctx_type, mtu) \
3242 Z_NET_DEVICE_INIT(DT_INVALID_NODE, dev_id, name, init_fn, pm, \
3243 data, config, prio, api, l2, l2_ctx_type, mtu)
3263#define NET_DEVICE_DT_DEFINE(node_id, init_fn, pm, data, \
3264 config, prio, api, l2, l2_ctx_type, mtu) \
3265 Z_NET_DEVICE_INIT(node_id, Z_DEVICE_DT_DEV_ID(node_id), \
3266 DEVICE_DT_NAME(node_id), init_fn, pm, data, \
3267 config, prio, api, l2, l2_ctx_type, mtu)
3277#define NET_DEVICE_DT_INST_DEFINE(inst, ...) \
3278 NET_DEVICE_DT_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
3303#define NET_DEVICE_INIT_INSTANCE(dev_id, name, instance, init_fn, pm, \
3304 data, config, prio, api, l2, \
3306 Z_NET_DEVICE_INIT_INSTANCE(DT_INVALID_NODE, dev_id, name, \
3307 instance, init_fn, pm, data, config, \
3308 prio, api, l2, l2_ctx_type, mtu)
3332#define NET_DEVICE_DT_DEFINE_INSTANCE(node_id, instance, init_fn, pm, \
3333 data, config, prio, api, l2, \
3335 Z_NET_DEVICE_INIT_INSTANCE(node_id, \
3336 Z_DEVICE_DT_DEV_ID(node_id), \
3337 DEVICE_DT_NAME(node_id), instance, \
3338 init_fn, pm, data, config, prio, \
3339 api, l2, l2_ctx_type, mtu)
3350#define NET_DEVICE_DT_INST_DEFINE_INSTANCE(inst, ...) \
3351 NET_DEVICE_DT_DEFINE_INSTANCE(DT_DRV_INST(inst), __VA_ARGS__)
3353#define Z_NET_DEVICE_OFFLOAD_INIT(node_id, dev_id, name, init_fn, pm, \
3354 data, config, prio, api, mtu) \
3355 Z_DEVICE_STATE_DEFINE(dev_id); \
3356 Z_DEVICE_DEFINE(node_id, dev_id, name, init_fn, pm, data, \
3357 config, POST_KERNEL, prio, api, \
3358 &Z_DEVICE_STATE_NAME(dev_id)); \
3359 NET_IF_OFFLOAD_INIT(dev_id, 0, mtu)
3380#define NET_DEVICE_OFFLOAD_INIT(dev_id, name, init_fn, pm, data, \
3381 config, prio, api, mtu) \
3382 Z_NET_DEVICE_OFFLOAD_INIT(DT_INVALID_NODE, dev_id, name, \
3383 init_fn, pm, data, config, prio, api, \
3404#define NET_DEVICE_DT_OFFLOAD_DEFINE(node_id, init_fn, pm, data, \
3405 config, prio, api, mtu) \
3406 Z_NET_DEVICE_OFFLOAD_INIT(node_id, Z_DEVICE_DT_DEV_ID(node_id), \
3407 DEVICE_DT_NAME(node_id), init_fn, pm, \
3408 data, config, prio, api, mtu)
3419#define NET_DEVICE_DT_INST_OFFLOAD_DEFINE(inst, ...) \
3420 NET_DEVICE_DT_OFFLOAD_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
3427#define NET_IFACE_COUNT(_dst) \
3429 extern struct net_if _net_if_list_start[]; \
3430 extern struct net_if _net_if_list_end[]; \
3431 *(_dst) = ((uintptr_t)_net_if_list_end - \
3432 (uintptr_t)_net_if_list_start) / \
3433 sizeof(struct net_if); \
3440#include <zephyr/syscalls/net_if.h>
struct z_thread_stack_element k_thread_stack_t
Typedef of struct z_thread_stack_element.
Definition arch_interface.h:46
long atomic_t
Definition atomic_types.h:15
ZTEST_BMEM int index[(3)]
Definition main.c:32
ZTEST_BMEM int timeout
Definition main.c:31
static k_tid_t tid[ARRAY_SIZE(timeout_order_data_mult_fifo)]
Definition main.c:86
static void atomic_set_bit(atomic_t *target, int bit)
Atomically set a bit.
Definition atomic.h:209
static bool atomic_test_bit(const atomic_t *target, int bit)
Atomically test a bit.
Definition atomic.h:127
static void atomic_clear_bit(atomic_t *target, int bit)
Atomically clear a bit.
Definition atomic.h:191
#define ATOMIC_DEFINE(name, num_bits)
Define an array of atomic variables.
Definition atomic.h:111
static bool atomic_test_and_clear_bit(atomic_t *target, int bit)
Atomically test and clear a bit.
Definition atomic.h:147
static bool atomic_test_and_set_bit(atomic_t *target, int bit)
Atomically set a bit.
Definition atomic.h:170
#define K_FOREVER
Generate infinite timeout delay.
Definition kernel.h:1363
unsigned short int sa_family_t
Socket address family type.
Definition net_ip.h:164
net_addr_state
What is the current state of the network address.
Definition net_ip.h:500
net_addr_type
How the network address is assigned to network interface.
Definition net_ip.h:508
int k_mutex_unlock(struct k_mutex *mutex)
Unlock a mutex.
int k_mutex_lock(struct k_mutex *mutex, k_timeout_t timeout)
Lock a mutex.
net_verdict
Net Verdict.
Definition net_core.h:100
static int net_hostname_set_postfix(const uint8_t *hostname_postfix, int postfix_len)
Set the device hostname postfix.
Definition hostname.h:108
struct net_if * net_if_select_src_iface(const struct sockaddr *dst)
Get a network interface that should be used when sending IPv6 or IPv4 network data to destination.
struct net_if_router * net_if_ipv4_router_lookup(struct net_if *iface, struct in_addr *addr)
Check if IPv4 address is one of the routers configured in the system.
int net_if_get_by_iface(struct net_if *iface)
Get interface index according to pointer.
int net_if_up(struct net_if *iface)
Bring interface up.
struct net_if * net_if_get_first_up(void)
Get the first network interface which is up.
struct net_if_addr * net_if_ipv4_addr_lookup(const struct in_addr *addr, struct net_if **iface)
Check if this IPv4 address belongs to one of the interfaces.
int net_if_set_name(struct net_if *iface, const char *buf)
Set network interface name.
static bool net_if_is_carrier_ok(struct net_if *iface)
Check if carrier is present on network device.
Definition net_if.h:2847
static bool net_if_is_admin_up(struct net_if *iface)
Check if interface was brought up by the administrator.
Definition net_if.h:2813
void net_if_set_default(struct net_if *iface)
Set the default network interface.
int net_if_ipv4_addr_lookup_by_index(const struct in_addr *addr)
Check if this IPv4 address belongs to one of the interface indices.
int(* net_socket_create_t)(int, int, int)
A function prototype to create an offloaded socket.
Definition net_if.h:629
struct net_if * net_if_get_wifi_sta(void)
Get Wi-Fi network station interface.
struct net_if_addr * net_if_ipv6_addr_lookup(const struct in6_addr *addr, struct net_if **iface)
Check if this IPv6 address belongs to one of the interfaces.
void net_if_ipv4_maddr_leave(struct net_if *iface, struct net_if_mcast_addr *addr)
Mark a given multicast address to be left.
int net_if_ipv6_addr_lookup_by_index(const struct in6_addr *addr)
Check if this IPv6 address belongs to one of the interface indices.
int net_if_get_by_name(const char *name)
Get interface index according to its name.
struct net_if * net_if_get_by_link_addr(struct net_linkaddr *ll_addr)
Get an interface according to link layer address.
void net_if_dormant_off(struct net_if *iface)
Mark interface as not dormant.
bool net_if_ipv6_router_rm(struct net_if_router *router)
Remove IPv6 router from the system.
bool net_if_ipv4_maddr_rm(struct net_if *iface, const struct in_addr *addr)
Remove an IPv4 multicast address from an interface.
void net_if_ipv6_dad_failed(struct net_if *iface, const struct in6_addr *addr)
Stop IPv6 Duplicate Address Detection (DAD) procedure if we find out that our IPv6 address is already...
static enum net_if_oper_state net_if_oper_state_set(struct net_if *iface, enum net_if_oper_state oper_state)
Set an operational state on an interface.
Definition net_if.h:868
int net_if_down(struct net_if *iface)
Bring interface down.
struct net_if_router * net_if_ipv4_router_find_default(struct net_if *iface, struct in_addr *addr)
Find default router for this IPv4 address.
bool net_if_ipv6_addr_onlink(struct net_if **iface, struct in6_addr *addr)
Check if this IPv6 address is part of the subnet of our network interface.
static struct in_addr * net_if_router_ipv4(struct net_if_router *router)
Get the IPv4 address of the given router.
Definition net_if.h:2358
void net_if_ipv6_prefix_unset_timer(struct net_if_ipv6_prefix *prefix)
Unset the prefix lifetime timer.
struct net_if_ipv6_prefix * net_if_ipv6_prefix_add(struct net_if *iface, struct in6_addr *prefix, uint8_t len, uint32_t lifetime)
Add a IPv6 prefix to an network interface.
void net_if_ipv4_set_gw(struct net_if *iface, const struct in_addr *gw)
Set IPv4 gateway for an interface.
int net_if_config_ipv4_get(struct net_if *iface, struct net_if_ipv4 **ipv4)
Allocate network interface IPv4 config.
void net_if_carrier_on(struct net_if *iface)
Underlying network device has detected the carrier (cable connected).
struct net_if_router * net_if_ipv6_router_find_default(struct net_if *iface, struct in6_addr *addr)
Find default router for this IPv6 address.
bool net_if_ipv6_prefix_rm(struct net_if *iface, struct in6_addr *addr, uint8_t len)
Remove an IPv6 prefix from an interface.
void net_if_ipv6_set_mcast_hop_limit(struct net_if *iface, uint8_t hop_limit)
Set the default IPv6 multicast hop limit of a given interface.
void net_if_ipv6_set_hop_limit(struct net_if *iface, uint8_t hop_limit)
Set the default IPv6 hop limit of a given interface.
void(* net_if_link_callback_t)(struct net_if *iface, struct net_linkaddr *dst, int status)
Define callback that is called after a network packet has been sent.
Definition net_if.h:2618
static void * net_if_l2_data(struct net_if *iface)
Get a pointer to the interface L2 private data.
Definition net_if.h:939
static bool net_if_are_pending_tx_packets(struct net_if *iface)
Check if there are any pending TX network data for a given network interface.
Definition net_if.h:3025
struct in_addr net_if_ipv4_get_netmask(struct net_if *iface)
Get IPv4 netmask of an interface.
static bool net_if_flag_test_and_set(struct net_if *iface, enum net_if_flag value)
Test and set a value in network interface flags.
Definition net_if.h:798
bool net_if_ipv4_addr_rm(struct net_if *iface, const struct in_addr *addr)
Remove a IPv4 address from an interface.
struct net_if_router * net_if_ipv4_router_add(struct net_if *iface, struct in_addr *addr, bool is_default, uint16_t router_lifetime)
Add IPv4 router to the system.
static struct net_linkaddr * net_if_get_link_addr(struct net_if *iface)
Get an network interface's link address.
Definition net_if.h:1088
void net_if_ipv6_maddr_join(struct net_if *iface, struct net_if_mcast_addr *addr)
Mark a given multicast address to be joined.
static const struct in6_addr * net_if_ipv6_select_src_addr(struct net_if *iface, const struct in6_addr *dst)
Get a IPv6 source address that should be used when sending network data to destination.
Definition net_if.h:2021
static void net_if_nbr_reachability_hint(struct net_if *iface, const struct in6_addr *ipv6_addr)
Provide a reachability hint for IPv6 Neighbor Discovery.
Definition net_if.h:1161
static struct net_offload * net_if_offload(struct net_if *iface)
Return the IP offload plugin.
Definition net_if.h:1005
static int net_if_set_link_addr(struct net_if *iface, uint8_t *addr, uint8_t len, enum net_link_type type)
Set a network interface's link address.
Definition net_if.h:1231
static void net_if_flag_set(struct net_if *iface, enum net_if_flag value)
Set a value in network interface flags.
Definition net_if.h:781
uint8_t net_if_ipv6_get_hop_limit(struct net_if *iface)
Get IPv6 hop limit specified for a given interface.
struct net_if * net_if_get_default(void)
Get the default network interface.
void net_if_ipv4_set_ttl(struct net_if *iface, uint8_t ttl)
Set IPv4 time-to-live value specified to a given interface.
bool net_if_ipv4_addr_mask_cmp(struct net_if *iface, const struct in_addr *addr)
Check if the given IPv4 address belongs to local subnet.
void net_if_queue_tx(struct net_if *iface, struct net_pkt *pkt)
Queue a packet to the net interface TX queue.
int net_if_config_ipv6_get(struct net_if *iface, struct net_if_ipv6 **ipv6)
Allocate network interface IPv6 config.
void net_if_ipv6_addr_foreach(struct net_if *iface, net_if_ip_addr_cb_t cb, void *user_data)
Go through all IPv6 addresses on a network interface and call callback for each used address.
static const struct in6_addr * net_if_ipv6_select_src_addr_hint(struct net_if *iface, const struct in6_addr *dst, int flags)
Get a IPv6 source address that should be used when sending network data to destination.
Definition net_if.h:2049
int net_if_get_name(struct net_if *iface, char *buf, int len)
Get network interface name.
void(* net_if_ip_maddr_cb_t)(struct net_if *iface, struct net_if_mcast_addr *maddr, void *user_data)
Callback used while iterating over network interface multicast IP addresses.
Definition net_if.h:1542
bool net_if_ipv6_addr_rm(struct net_if *iface, const struct in6_addr *addr)
Remove an IPv6 address from an interface.
void net_if_carrier_off(struct net_if *iface)
Underlying network device has lost the carrier (cable disconnected).
void net_if_ipv6_prefix_set_timer(struct net_if_ipv6_prefix *prefix, uint32_t lifetime)
Set the prefix lifetime timer.
void net_if_unregister_link_cb(struct net_if_link_cb *link)
Unregister a link callback.
bool net_if_ipv4_router_rm(struct net_if_router *router)
Remove IPv4 router from the system.
static bool net_if_is_ip_offloaded(struct net_if *iface)
Return the IP offload status.
Definition net_if.h:977
static bool net_if_is_dormant(struct net_if *iface)
Check if the interface is dormant.
Definition net_if.h:2883
struct net_if * net_if_get_first_wifi(void)
Get first Wi-Fi network interface.
struct net_if_addr * net_if_ipv4_addr_add(struct net_if *iface, struct in_addr *addr, enum net_addr_type addr_type, uint32_t vlifetime)
Add a IPv4 address to an interface.
uint8_t net_if_ipv4_get_mcast_ttl(struct net_if *iface)
Get IPv4 multicast time-to-live value specified for a given interface.
struct net_if * net_if_get_by_index(int index)
Get interface according to index.
enum net_verdict net_if_recv_data(struct net_if *iface, struct net_pkt *pkt)
Input a packet through a net iface.
void(* net_if_mcast_callback_t)(struct net_if *iface, const struct net_addr *addr, bool is_joined)
Define a callback that is called whenever a IPv6 or IPv4 multicast address group is joined or left.
Definition net_if.h:1580
struct net_if * net_if_get_first_by_type(const struct net_l2 *l2)
Get the first network interface according to its type.
static void net_if_set_mtu(struct net_if *iface, uint16_t mtu)
Set an network interface's MTU.
Definition net_if.h:1266
struct net_if_mcast_addr * net_if_ipv6_maddr_add(struct net_if *iface, const struct in6_addr *addr)
Add a IPv6 multicast address to an interface.
bool net_if_ipv4_set_netmask_by_addr(struct net_if *iface, const struct in_addr *addr, const struct in_addr *netmask)
Set IPv4 netmask for an interface index for a given address.
uint8_t net_if_ipv4_get_ttl(struct net_if *iface)
Get IPv4 time-to-live value specified for a given interface.
static bool net_if_is_up(struct net_if *iface)
Check if interface is up and running.
Definition net_if.h:2789
bool net_if_need_calc_rx_checksum(struct net_if *iface, enum net_if_checksum_type chksum_type)
Check if received network packet checksum calculation can be avoided or not.
static void net_if_ipv6_set_reachable_time(struct net_if_ipv6 *ipv6)
Set IPv6 reachable time for a given interface.
Definition net_if.h:1947
struct in6_addr * net_if_ipv6_get_ll_addr(enum net_addr_state state, struct net_if **iface)
Return link local IPv6 address from the first interface that has a link local address matching give s...
int net_if_config_ipv4_put(struct net_if *iface)
Release network interface IPv4 config.
bool net_if_ipv4_set_netmask_by_addr_by_index(int index, const struct in_addr *addr, const struct in_addr *netmask)
Set IPv4 netmask for an interface index for a given address.
void net_if_dormant_on(struct net_if *iface)
Mark interface as dormant.
int net_if_config_ipv6_put(struct net_if *iface)
Release network interface IPv6 config.
net_if_checksum_type
Type of checksum for which support in the interface will be queried.
Definition net_if.h:2684
bool net_if_ipv4_is_addr_bcast(struct net_if *iface, const struct in_addr *addr)
Check if the given IPv4 address is a broadcast address.
void net_if_mcast_mon_register(struct net_if_mcast_monitor *mon, struct net_if *iface, net_if_mcast_callback_t cb)
Register a multicast monitor.
void net_if_ipv4_set_mcast_ttl(struct net_if *iface, uint8_t ttl)
Set IPv4 multicast time-to-live value specified to a given interface.
bool net_if_ipv4_set_netmask_by_index(int index, const struct in_addr *netmask)
Set IPv4 netmask for an interface index.
uint8_t net_if_ipv6_get_mcast_hop_limit(struct net_if *iface)
Get IPv6 multicast hop limit specified for a given interface.
bool net_if_need_calc_tx_checksum(struct net_if *iface, enum net_if_checksum_type chksum_type)
Check if network packet checksum calculation can be avoided or not when sending the packet.
static void net_if_start_dad(struct net_if *iface)
Start duplicate address detection procedure.
Definition net_if.h:1118
void net_if_foreach(net_if_cb_t cb, void *user_data)
Go through all the network interfaces and call callback for each interface.
bool net_if_ipv6_addr_add_by_index(int index, struct in6_addr *addr, enum net_addr_type addr_type, uint32_t vlifetime)
Add a IPv6 address to an interface by index.
struct net_if_router * net_if_ipv6_router_add(struct net_if *iface, struct in6_addr *addr, uint16_t router_lifetime)
Add IPv6 router to the system.
static void net_if_unset_promisc(struct net_if *iface)
Set network interface into normal mode.
Definition net_if.h:2991
static void net_if_socket_offload_set(struct net_if *iface, net_socket_create_t socket_offload)
Set the function to create an offloaded socket.
Definition net_if.h:1046
static uint32_t net_if_ipv6_get_reachable_time(struct net_if *iface)
Get IPv6 reachable timeout specified for a given interface.
Definition net_if.h:1916
static bool net_if_is_promisc(struct net_if *iface)
Check if promiscuous mode is set or not.
Definition net_if.h:3008
static bool net_if_ipv4_maddr_is_joined(struct net_if_mcast_addr *addr)
Check if given multicast address is joined or not.
Definition net_if.h:2328
static void net_if_ipv6_prefix_set_lf(struct net_if_ipv6_prefix *prefix, bool is_infinite)
Set the infinite status of the prefix.
Definition net_if.h:1721
struct net_if_mcast_addr * net_if_ipv4_maddr_add(struct net_if *iface, const struct in_addr *addr)
Add a IPv4 multicast address to an interface.
bool net_if_is_wifi(struct net_if *iface)
Check if the network interface supports Wi-Fi.
void net_if_register_link_cb(struct net_if_link_cb *link, net_if_link_callback_t cb)
Register a link callback.
void net_if_call_link_cb(struct net_if *iface, struct net_linkaddr *lladdr, int status)
Call a link callback function.
void net_if_ipv6_router_update_lifetime(struct net_if_router *router, uint16_t lifetime)
Update validity lifetime time of a router.
void net_if_ipv4_addr_foreach(struct net_if *iface, net_if_ip_addr_cb_t cb, void *user_data)
Go through all IPv4 addresses on a network interface and call callback for each used address.
struct net_if_ipv6_prefix * net_if_ipv6_prefix_lookup(struct net_if *iface, struct in6_addr *addr, uint8_t len)
Check if this IPv6 prefix belongs to this interface.
static void net_if_stop_rs(struct net_if *iface)
Stop neighbor discovery.
Definition net_if.h:1140
uint32_t net_if_ipv6_calc_reachable_time(struct net_if_ipv6 *ipv6)
Calculate next reachable time value for IPv6 reachable time.
static void net_if_ipv6_set_base_reachable_time(struct net_if *iface, uint32_t reachable_time)
Set IPv6 reachable time for a given interface.
Definition net_if.h:1891
struct net_if_addr * net_if_ipv6_addr_lookup_by_iface(struct net_if *iface, struct in6_addr *addr)
Check if this IPv6 address belongs to this specific interfaces.
void net_if_ipv6_maddr_foreach(struct net_if *iface, net_if_ip_maddr_cb_t cb, void *user_data)
Go through all IPv6 multicast addresses on a network interface and call callback for each used addres...
static bool net_if_flag_test_and_clear(struct net_if *iface, enum net_if_flag value)
Test and clear a value in network interface flags.
Definition net_if.h:830
void net_if_start_rs(struct net_if *iface)
Start neighbor discovery and send router solicitation message.
static bool net_if_ipv6_maddr_is_joined(struct net_if_mcast_addr *addr)
Check if given multicast address is joined or not.
Definition net_if.h:1648
bool net_if_ipv6_addr_rm_by_index(int index, const struct in6_addr *addr)
Remove an IPv6 address from an interface by index.
bool net_if_ipv4_addr_rm_by_index(int index, const struct in_addr *addr)
Remove a IPv4 address from an interface by interface index.
struct in6_addr * net_if_ipv6_get_global_addr(enum net_addr_state state, struct net_if **iface)
Return global IPv6 address from the first interface that has a global IPv6 address matching the given...
static uint16_t net_if_get_mtu(struct net_if *iface)
Get an network interface's MTU.
Definition net_if.h:1249
struct net_if_router * net_if_ipv6_router_lookup(struct net_if *iface, struct in6_addr *addr)
Check if IPv6 address is one of the routers configured in the system.
bool net_if_ipv4_addr_add_by_index(int index, struct in_addr *addr, enum net_addr_type addr_type, uint32_t vlifetime)
Add a IPv4 address to an interface by network interface index.
void net_if_ipv6_maddr_leave(struct net_if *iface, struct net_if_mcast_addr *addr)
Mark a given multicast address to be left.
struct in_addr * net_if_ipv4_get_ll(struct net_if *iface, enum net_addr_state addr_state)
Get a IPv4 link local address in a given state.
void net_if_mcast_mon_unregister(struct net_if_mcast_monitor *mon)
Unregister a multicast monitor.
void net_if_ipv4_set_netmask(struct net_if *iface, const struct in_addr *netmask)
Set IPv4 netmask for an interface.
static const struct in_addr * net_if_ipv4_select_src_addr(struct net_if *iface, const struct in_addr *dst)
Get a IPv4 source address that should be used when sending network data to destination.
Definition net_if.h:2473
struct in6_addr * net_if_ipv6_get_ll(struct net_if *iface, enum net_addr_state addr_state)
Get a IPv6 link local address in a given state.
static void net_if_ipv6_set_retrans_timer(struct net_if *iface, uint32_t retrans_timer)
Set IPv6 retransmit timer for a given interface.
Definition net_if.h:1966
struct in_addr * net_if_ipv4_get_global_addr(struct net_if *iface, enum net_addr_state addr_state)
Get a IPv4 global address in a given state.
enum net_verdict net_if_send_data(struct net_if *iface, struct net_pkt *pkt)
Send a packet through a net iface.
struct net_if_mcast_addr * net_if_ipv6_maddr_lookup(const struct in6_addr *addr, struct net_if **iface)
Check if this IPv6 multicast address belongs to a specific interface or one of the interfaces.
struct net_if * net_if_lookup_by_dev(const struct device *dev)
Find an interface from it's related device.
static struct in6_addr * net_if_router_ipv6(struct net_if_router *router)
Get the IPv6 address of the given router.
Definition net_if.h:1769
struct net_if_mcast_addr * net_if_ipv4_maddr_lookup(const struct in_addr *addr, struct net_if **iface)
Check if this IPv4 multicast address belongs to a specific interface or one of the interfaces.
void net_if_router_rm(struct net_if_router *router)
Remove a router from the system.
static uint32_t net_if_ipv6_get_retrans_timer(struct net_if *iface)
Get IPv6 retransmit timer specified for a given interface.
Definition net_if.h:1990
void(* net_if_ip_addr_cb_t)(struct net_if *iface, struct net_if_addr *addr, void *user_data)
Callback used while iterating over network interface IP addresses.
Definition net_if.h:1498
bool net_if_ipv4_set_gw_by_index(int index, const struct in_addr *gw)
Set IPv4 gateway for an interface index.
struct in_addr net_if_ipv4_get_netmask_by_addr(struct net_if *iface, const struct in_addr *addr)
Get IPv4 netmask related to an address of an interface.
net_if_oper_state
Network interface operational status (RFC 2863).
Definition net_if.h:299
struct net_if_addr * net_if_ipv6_addr_add(struct net_if *iface, struct in6_addr *addr, enum net_addr_type addr_type, uint32_t vlifetime)
Add a IPv6 address to an interface.
static struct net_if * net_if_ipv6_select_src_iface(const struct in6_addr *dst)
Get a network interface that should be used when sending IPv6 network data to destination.
Definition net_if.h:2072
static bool net_if_flag_is_set(struct net_if *iface, enum net_if_flag value)
Check if a value in network interface flags is set.
Definition net_if.h:847
static struct net_if_config * net_if_config_get(struct net_if *iface)
Get network interface IP config.
Definition net_if.h:1317
static struct net_if_config * net_if_get_config(struct net_if *iface)
Return network configuration for this network interface.
Definition net_if.h:1103
void net_if_ipv4_maddr_join(struct net_if *iface, struct net_if_mcast_addr *addr)
Mark a given multicast address to be joined.
static void net_if_addr_set_lf(struct net_if_addr *ifaddr, bool is_infinite)
Set the infinite status of the network interface address.
Definition net_if.h:1284
net_if_flag
Network interface flags.
Definition net_if.h:241
void net_if_ipv4_maddr_foreach(struct net_if *iface, net_if_ip_maddr_cb_t cb, void *user_data)
Go through all IPv4 multicast addresses on a network interface and call callback for each used addres...
struct net_if_ipv6_prefix * net_if_ipv6_prefix_get(struct net_if *iface, const struct in6_addr *addr)
Return prefix that corresponds to this IPv6 address.
static const struct device * net_if_get_device(struct net_if *iface)
Get an network interface's device.
Definition net_if.h:954
void(* net_if_cb_t)(struct net_if *iface, void *user_data)
Callback used while iterating over network interfaces.
Definition net_if.h:2762
bool net_if_is_offloaded(struct net_if *iface)
Return offload status of a given network interface.
void net_if_ipv6_addr_update_lifetime(struct net_if_addr *ifaddr, uint32_t vlifetime)
Update validity lifetime time of an IPv6 address.
bool net_if_ipv6_maddr_rm(struct net_if *iface, const struct in6_addr *addr)
Remove an IPv6 multicast address from an interface.
static bool net_if_is_socket_offloaded(struct net_if *iface)
Return the socket offload status.
Definition net_if.h:1026
struct net_if * net_if_get_wifi_sap(void)
Get first Wi-Fi network Soft-AP interface.
static int net_if_set_promisc(struct net_if *iface)
Set network interface into promiscuous mode.
Definition net_if.h:2975
static const struct net_l2 * net_if_l2(struct net_if *iface)
Get a pointer to the interface L2.
Definition net_if.h:913
static net_socket_create_t net_if_socket_offload(struct net_if *iface)
Return the function to create an offloaded socket.
Definition net_if.h:1067
static struct net_if * net_if_ipv4_select_src_iface(const struct in_addr *dst)
Get a network interface that should be used when sending IPv4 network data to destination.
Definition net_if.h:2449
static void net_if_flag_clear(struct net_if *iface, enum net_if_flag value)
Clear a value in network interface flags.
Definition net_if.h:813
@ NET_IF_CHECKSUM_IPV4_ICMP
Interface supports checksum calculation for ICMP4 payload in IPv4.
Definition net_if.h:2694
@ NET_IF_CHECKSUM_IPV6_TCP
Interface supports checksum calculation for TCP payload in IPv6.
Definition net_if.h:2698
@ NET_IF_CHECKSUM_IPV6_UDP
Interface supports checksum calculation for UDP payload in IPv6.
Definition net_if.h:2701
@ NET_IF_CHECKSUM_IPV4_HEADER
Interface supports IP version 4 header checksum calculation.
Definition net_if.h:2686
@ NET_IF_CHECKSUM_IPV4_TCP
Interface supports checksum calculation for TCP payload in IPv4.
Definition net_if.h:2688
@ NET_IF_CHECKSUM_IPV6_HEADER
Interface supports IP version 6 header checksum calculation.
Definition net_if.h:2696
@ NET_IF_CHECKSUM_IPV6_ICMP
Interface supports checksum calculation for ICMP6 payload in IPv6.
Definition net_if.h:2704
@ NET_IF_CHECKSUM_IPV4_UDP
Interface supports checksum calculation for UDP payload in IPv4.
Definition net_if.h:2691
@ NET_IF_OPER_TESTING
Training mode.
Definition net_if.h:304
@ NET_IF_OPER_DORMANT
Waiting external action.
Definition net_if.h:305
@ NET_IF_OPER_UP
Interface is up.
Definition net_if.h:306
@ NET_IF_OPER_NOTPRESENT
Hardware missing.
Definition net_if.h:301
@ NET_IF_OPER_UNKNOWN
Initial (unknown) value.
Definition net_if.h:300
@ NET_IF_OPER_DOWN
Interface is down.
Definition net_if.h:302
@ NET_IF_OPER_LOWERLAYERDOWN
Lower layer interface is down.
Definition net_if.h:303
@ NET_IF_NO_AUTO_START
Do not start the interface immediately after initialization.
Definition net_if.h:257
@ NET_IF_IPV6_NO_MLD
IPv6 Multicast Listener Discovery disabled.
Definition net_if.h:287
@ NET_IF_POINTOPOINT
Interface is pointopoint.
Definition net_if.h:246
@ NET_IF_IPV6_NO_ND
IPv6 Neighbor Discovery disabled.
Definition net_if.h:284
@ NET_IF_FORWARD_MULTICASTS
Flag defines if received multicasts of other interface are forwarded on this interface.
Definition net_if.h:266
@ NET_IF_IPV4
Interface supports IPv4.
Definition net_if.h:269
@ NET_IF_PROMISC
Interface is in promiscuous mode.
Definition net_if.h:249
@ NET_IF_DORMANT
Driver signals dormant.
Definition net_if.h:281
@ NET_IF_SUSPENDED
Power management specific: interface is being suspended.
Definition net_if.h:260
@ NET_IF_IPV6
Interface supports IPv6.
Definition net_if.h:272
@ NET_IF_UP
Interface is admin up.
Definition net_if.h:243
@ NET_IF_LOWER_UP
Driver signals L1 is up.
Definition net_if.h:278
@ NET_IF_RUNNING
Interface up and running (ready to receive and transmit).
Definition net_if.h:275
@ NET_IF_NO_TX_LOCK
Mutex locking on TX data path disabled on the interface.
Definition net_if.h:290
net_link_type
Type of the link address.
Definition net_linkaddr.h:47
struct _slist sys_slist_t
Single-linked list structure.
Definition slist.h:49
struct _snode sys_snode_t
Single-linked list node structure.
Definition slist.h:39
#define ENOTSUP
Unsupported value.
Definition errno.h:114
#define EPERM
Not owner.
Definition errno.h:39
Hostname configuration definitions.
net_ipv4_autoconf_state
Current state of IPv4 Autoconfiguration.
Definition ipv4_autoconf.h:15
Network core definitions.
IPv6 and IPv4 definitions.
Public API for network L2 interface.
Public API for network link address.
Network timer with wrap around.
flags
Definition parser.h:96
state
Definition parser_state.h:29
struct k_thread t2
Definition main.c:28
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__INT32_TYPE__ int32_t
Definition stdint.h:74
__UINT64_TYPE__ uint64_t
Definition stdint.h:91
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
__UINT16_TYPE__ uint16_t
Definition stdint.h:89
__INT64_TYPE__ int64_t
Definition stdint.h:75
__INT16_TYPE__ int16_t
Definition stdint.h:73
Runtime device structure (in ROM) per driver instance.
Definition device.h:403
IPv6 address struct.
Definition net_ip.h:139
IPv4 address struct.
Definition net_ip.h:151
Mutex Structure.
Definition kernel.h:2917
Thread Structure.
Definition thread.h:259
Kernel timepoint type.
Definition sys_clock.h:219
DHCPv6 client configuration parameters.
Definition dhcpv6.h:61
Network Interface unicast IPv4 address and netmask.
Definition net_if.h:450
struct net_if_addr ipv4
IPv4 address.
Definition net_if.h:452
struct in_addr netmask
Netmask.
Definition net_if.h:454
Network Interface unicast IP addresses.
Definition net_if.h:52
struct net_addr address
IP address.
Definition net_if.h:54
uint8_t is_mesh_local
Is this IP address usage limited to the subnet (mesh) or not.
Definition net_if.h:138
uint8_t is_temporary
Is this IP address temporary and generated for example by IPv6 privacy extension (RFC 8981)
Definition net_if.h:143
enum net_addr_state addr_state
What is the current state of the address.
Definition net_if.h:69
uint8_t is_infinite
Is the IP address valid forever.
Definition net_if.h:132
atomic_t atomic_ref
Reference counter.
Definition net_if.h:59
uint8_t is_added
Was this address added or not.
Definition net_if.h:146
enum net_addr_type addr_type
How the IP address was set.
Definition net_if.h:66
uint8_t is_used
Is this IP address used or not.
Definition net_if.h:135
IP and other configuration related data for network interface.
Definition net_if.h:568
Network Interface Device structure.
Definition net_if.h:645
enum net_if_oper_state oper_state
RFC 2863 operational status.
Definition net_if.h:681
const struct net_l2 *const l2
Interface's L2 layer.
Definition net_if.h:650
void * l2_data
Interface's private L2 data pointer.
Definition net_if.h:653
uint16_t mtu
The hardware MTU.
Definition net_if.h:671
const struct device * dev
The actually device driver instance the net_if is related to.
Definition net_if.h:647
struct net_linkaddr link_addr
The hardware link address.
Definition net_if.h:659
atomic_t flags[ATOMIC_BITMAP_SIZE(NET_IF_NUM_FLAGS)]
For internal use.
Definition net_if.h:656
Network interface IP address configuration.
Definition net_if.h:555
IPv4 configuration.
Definition net_if.h:458
uint8_t mcast_ttl
IPv4 time-to-live for multicast packets.
Definition net_if.h:472
struct net_if_addr_ipv4 unicast[NET_IF_MAX_IPV4_ADDR]
Unicast IP addresses.
Definition net_if.h:460
struct in_addr gw
Gateway.
Definition net_if.h:466
uint8_t ttl
IPv4 time-to-live.
Definition net_if.h:469
struct net_if_mcast_addr mcast[NET_IF_MAX_IPV4_MADDR]
Multicast IP addresses.
Definition net_if.h:463
Network Interface IPv6 prefixes.
Definition net_if.h:185
struct net_if * iface
Backpointer to network interface where this prefix is used.
Definition net_if.h:193
uint8_t is_infinite
Is the IP prefix valid forever.
Definition net_if.h:199
uint8_t len
Prefix length.
Definition net_if.h:196
struct in6_addr prefix
IPv6 prefix.
Definition net_if.h:190
uint8_t is_used
Is this prefix used or not.
Definition net_if.h:202
struct net_timeout lifetime
Prefix lifetime.
Definition net_if.h:187
IPv6 configuration.
Definition net_if.h:326
struct net_if_ipv6_prefix prefix[NET_IF_MAX_IPV6_PREFIX]
Prefixes.
Definition net_if.h:334
uint32_t base_reachable_time
Default reachable time (RFC 4861, page 52)
Definition net_if.h:337
uint8_t hop_limit
IPv6 hop limit.
Definition net_if.h:365
struct net_if_mcast_addr mcast[NET_IF_MAX_IPV6_MADDR]
Multicast IP addresses.
Definition net_if.h:331
uint32_t retrans_timer
Retransmit timer (RFC 4861, page 52)
Definition net_if.h:343
struct net_if_addr unicast[NET_IF_MAX_IPV6_ADDR]
Unicast IP addresses.
Definition net_if.h:328
uint8_t mcast_hop_limit
IPv6 multicast hop limit.
Definition net_if.h:368
uint32_t reachable_time
Reachable time (RFC 4861, page 20)
Definition net_if.h:340
Link callback handler struct.
Definition net_if.h:2630
net_if_link_callback_t cb
Link callback.
Definition net_if.h:2635
sys_snode_t node
Node information for the slist.
Definition net_if.h:2632
Network Interface multicast IP addresses.
Definition net_if.h:156
struct net_addr address
IP address.
Definition net_if.h:158
uint8_t is_joined
Did we join to this group.
Definition net_if.h:175
uint8_t is_used
Is this multicast IP address used or not.
Definition net_if.h:172
Multicast monitor handler struct.
Definition net_if.h:1592
sys_snode_t node
Node information for the slist.
Definition net_if.h:1594
net_if_mcast_callback_t cb
Multicast callback.
Definition net_if.h:1600
struct net_if * iface
Network interface.
Definition net_if.h:1597
Information about routers in the system.
Definition net_if.h:212
struct net_if * iface
Network interface the router is connected to.
Definition net_if.h:220
uint8_t is_default
Is default router.
Definition net_if.h:232
uint16_t lifetime
Router lifetime.
Definition net_if.h:226
uint8_t is_infinite
Is the router valid forever.
Definition net_if.h:235
uint8_t is_used
Is this router used or not.
Definition net_if.h:229
struct net_addr address
IP address.
Definition net_if.h:217
sys_snode_t node
Slist lifetime timer node.
Definition net_if.h:214
uint32_t life_start
Router life timer start.
Definition net_if.h:223
Network Interface structure.
Definition net_if.h:691
struct net_if_dev * if_dev
The net_if_dev instance the net_if is related to.
Definition net_if.h:693
struct net_if_config config
Network interface instance configuration.
Definition net_if.h:701
uint8_t pe_enabled
Network interface specific flags.
Definition net_if.h:721
struct k_mutex lock
Mutex protecting this network interface instance.
Definition net_if.h:712
uint8_t pe_prefer_public
If PE is enabled, then this tells whether public addresses are preferred over temporary ones for this...
Definition net_if.h:726
struct k_mutex tx_lock
Mutex used when sending data.
Definition net_if.h:715
Network L2 structure.
Definition net_l2.h:55
Hardware link address structure.
Definition net_linkaddr.h:67
uint8_t * addr
The array of byte representing the address.
Definition net_linkaddr.h:69
uint8_t type
What kind of address is this for.
Definition net_linkaddr.h:75
uint8_t len
Length of that address array.
Definition net_linkaddr.h:72
Network packet.
Definition net_pkt.h:67
All network statistics in one struct.
Definition net_stats.h:323
Generic struct for handling network timeouts.
Definition net_timeout.h:55
Network traffic class.
Definition net_if.h:612
k_thread_stack_t * stack
Stack for this handler.
Definition net_if.h:620
struct k_thread handler
Traffic class handler thread.
Definition net_if.h:617
struct k_fifo fifo
Fifo for handling this Tx or Rx packet.
Definition net_if.h:614
Generic sockaddr struct.
Definition net_ip.h:385
static const intptr_t user_data[5]
Definition main.c:588