Zephyr API Documentation  3.6.0
A Scalable Open Source RTOS
3.6.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
net_if.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2016 Intel Corporation.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
12#ifndef ZEPHYR_INCLUDE_NET_NET_IF_H_
13#define ZEPHYR_INCLUDE_NET_NET_IF_H_
14
22#include <zephyr/device.h>
23#include <zephyr/sys/slist.h>
25#include <zephyr/net/net_core.h>
26#include <zephyr/net/hostname.h>
28#include <zephyr/net/net_ip.h>
29#include <zephyr/net/net_l2.h>
32
33#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
34#include <zephyr/net/dhcpv4.h>
35#endif
36#if defined(CONFIG_NET_DHCPV6) && defined(CONFIG_NET_NATIVE_IPV6)
37#include <zephyr/net/dhcpv6.h>
38#endif
39#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
41#endif
42
43#ifdef __cplusplus
44extern "C" {
45#endif
46
54 struct net_addr address;
55
56#if defined(CONFIG_NET_NATIVE_IPV6)
57 struct net_timeout lifetime;
58#endif
59
60#if defined(CONFIG_NET_IPV6_DAD) && defined(CONFIG_NET_NATIVE_IPV6)
62 sys_snode_t dad_node;
63 uint32_t dad_start;
64#endif
67
70
71#if defined(CONFIG_NET_IPV6_DAD) && defined(CONFIG_NET_NATIVE_IPV6)
73 uint8_t dad_count;
74#endif
75
78
81
84
85 uint8_t _unused : 5;
86};
87
95 struct net_addr address;
96
97#if defined(CONFIG_NET_IPV4_IGMPV3)
99 struct net_addr sources[CONFIG_NET_IF_MCAST_IPV4_SOURCE_COUNT];
100
102 uint16_t sources_len;
103
105 uint8_t record_type;
106#endif
107
110
113
114 uint8_t _unused : 6;
115};
116
125
128
130 struct net_if *iface;
131
134
137
140
141 uint8_t _unused : 6;
142};
143
152
154 struct net_addr address;
155
157 struct net_if *iface;
158
161
164
167
170
173
174 uint8_t _unused : 5;
175};
176
181
184
187
195
198
204
207
210
213
216
219
222
225
228
230 /* Total number of flags - must be at the end of the enum */
231 NET_IF_NUM_FLAGS
233};
234
244} __packed;
245
246#if defined(CONFIG_NET_OFFLOAD)
247struct net_offload;
248#endif /* CONFIG_NET_OFFLOAD */
249
251#if defined(CONFIG_NET_NATIVE_IPV6)
252#define NET_IF_MAX_IPV6_ADDR CONFIG_NET_IF_UNICAST_IPV6_ADDR_COUNT
253#define NET_IF_MAX_IPV6_MADDR CONFIG_NET_IF_MCAST_IPV6_ADDR_COUNT
254#define NET_IF_MAX_IPV6_PREFIX CONFIG_NET_IF_IPV6_PREFIX_COUNT
255#else
256#define NET_IF_MAX_IPV6_ADDR 0
257#define NET_IF_MAX_IPV6_MADDR 0
258#define NET_IF_MAX_IPV6_PREFIX 0
259#endif
260/* @endcond */
261
264 struct net_if_addr unicast[NET_IF_MAX_IPV6_ADDR];
265
267 struct net_if_mcast_addr mcast[NET_IF_MAX_IPV6_MADDR];
268
270 struct net_if_ipv6_prefix prefix[NET_IF_MAX_IPV6_PREFIX];
271
274
277
280#if defined(CONFIG_NET_IPV6_ND) && defined(CONFIG_NET_NATIVE_IPV6)
282 sys_snode_t rs_node;
283
284 /* RS start time */
285 uint32_t rs_start;
286
288 uint8_t rs_count;
289#endif
290
293
296};
297
298#if defined(CONFIG_NET_DHCPV6) && defined(CONFIG_NET_NATIVE_IPV6)
299struct net_if_dhcpv6 {
301 sys_snode_t node;
302
304 struct net_dhcpv6_duid_storage clientid;
305
307 struct net_dhcpv6_duid_storage serverid;
308
310 enum net_dhcpv6_state state;
311
313 struct net_dhcpv6_params params;
314
316 uint64_t timeout;
317
319 uint64_t exchange_start;
320
322 uint64_t t1;
323
325 uint64_t t2;
326
330 uint64_t expire;
331
333 uint32_t addr_iaid;
334
336 uint32_t prefix_iaid;
337
339 uint32_t retransmit_timeout;
340
342 int16_t server_preference;
343
345 uint8_t retransmissions;
346
348 uint8_t tid[DHCPV6_TID_SIZE];
349
351 uint8_t prefix_len;
352
354 struct in6_addr prefix;
355
357 struct in6_addr addr;
358};
359#endif /* defined(CONFIG_NET_DHCPV6) && defined(CONFIG_NET_NATIVE_IPV6) */
360
362#if defined(CONFIG_NET_NATIVE_IPV4)
363#define NET_IF_MAX_IPV4_ADDR CONFIG_NET_IF_UNICAST_IPV4_ADDR_COUNT
364#define NET_IF_MAX_IPV4_MADDR CONFIG_NET_IF_MCAST_IPV4_ADDR_COUNT
365#else
366#define NET_IF_MAX_IPV4_ADDR 0
367#define NET_IF_MAX_IPV4_MADDR 0
368#endif
373 struct net_if_addr unicast[NET_IF_MAX_IPV4_ADDR];
374
376 struct net_if_mcast_addr mcast[NET_IF_MAX_IPV4_MADDR];
377
379 struct in_addr gw;
380
383
386
389};
390
391#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
392struct net_if_dhcpv4 {
394 sys_snode_t node;
395
397 int64_t timer_start;
398
400 uint32_t request_time;
401
402 uint32_t xid;
403
405 uint32_t lease_time;
406
408 uint32_t renewal_time;
409
411 uint32_t rebinding_time;
412
414 struct in_addr server_id;
415
417 struct in_addr requested_ip;
418
423 enum net_dhcpv4_state state;
424
426 uint8_t attempts;
427
429 struct in_addr request_server_addr;
430
432 struct in_addr response_src_addr;
433};
434#endif /* CONFIG_NET_DHCPV4 */
435
436#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
437struct net_if_ipv4_autoconf {
439 sys_snode_t node;
440
442 struct net_if *iface;
443
445 int64_t timer_start;
446
448 uint32_t timer_timeout;
449
451 struct in_addr current_ip;
452
454 struct in_addr requested_ip;
455
459
461 uint8_t probe_cnt;
462
464 uint8_t announce_cnt;
465
467 uint8_t conflict_cnt;
468};
469#endif /* CONFIG_NET_IPV4_AUTO */
470
472/* We always need to have at least one IP config */
473#define NET_IF_MAX_CONFIGS 1
479struct net_if_ip {
480#if defined(CONFIG_NET_NATIVE_IPV6)
481 struct net_if_ipv6 *ipv6;
482#endif /* CONFIG_NET_IPV6 */
483
484#if defined(CONFIG_NET_NATIVE_IPV4)
485 struct net_if_ipv4 *ipv4;
486#endif /* CONFIG_NET_IPV4 */
487};
488
493#if defined(CONFIG_NET_IP)
495 struct net_if_ip ip;
496#endif
497
498#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
499 struct net_if_dhcpv4 dhcpv4;
500#endif /* CONFIG_NET_DHCPV4 */
501
502#if defined(CONFIG_NET_DHCPV6) && defined(CONFIG_NET_NATIVE_IPV6)
503 struct net_if_dhcpv6 dhcpv6;
504#endif /* CONFIG_NET_DHCPV6 */
505
506#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
507 struct net_if_ipv4_autoconf ipv4auto;
508#endif /* CONFIG_NET_IPV4_AUTO */
509
510#if defined(CONFIG_NET_L2_VIRTUAL)
515 sys_slist_t virtual_interfaces;
516#endif /* CONFIG_NET_L2_VIRTUAL */
517
518#if defined(CONFIG_NET_INTERFACE_NAME)
523 char name[CONFIG_NET_INTERFACE_NAME_LEN + 1];
524#endif
525};
526
538 struct k_fifo fifo;
539
542
545};
546
553typedef int (*net_socket_create_t)(int, int, int);
554
571 const struct device *dev;
572
574 const struct net_l2 * const l2;
575
577 void *l2_data;
578
579 /* For internal use */
580 ATOMIC_DEFINE(flags, NET_IF_NUM_FLAGS);
581
584
585#if defined(CONFIG_NET_OFFLOAD)
591 struct net_offload *offload;
592#endif /* CONFIG_NET_OFFLOAD */
593
596
597#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
601 net_socket_create_t socket_offload;
602#endif /* CONFIG_NET_SOCKETS_OFFLOAD */
603
606};
607
615struct net_if {
618
619#if defined(CONFIG_NET_STATISTICS_PER_INTERFACE)
621 struct net_stats stats;
622#endif /* CONFIG_NET_STATISTICS_PER_INTERFACE */
623
626
627#if defined(CONFIG_NET_POWER_MANAGEMENT)
632 int tx_pending;
633#endif
634
635 struct k_mutex lock;
637};
638
639static inline void net_if_lock(struct net_if *iface)
640{
641 NET_ASSERT(iface);
642
643 (void)k_mutex_lock(&iface->lock, K_FOREVER);
644}
645
646static inline void net_if_unlock(struct net_if *iface)
647{
648 NET_ASSERT(iface);
649
650 k_mutex_unlock(&iface->lock);
651}
652
653static inline bool net_if_flag_is_set(struct net_if *iface,
654 enum net_if_flag value);
655
656static inline void net_if_tx_lock(struct net_if *iface)
657{
658 NET_ASSERT(iface);
659
661 return;
662 }
663
664 (void)k_mutex_lock(&iface->tx_lock, K_FOREVER);
665}
666
667static inline void net_if_tx_unlock(struct net_if *iface)
668{
669 NET_ASSERT(iface);
670
672 return;
673 }
674
675 k_mutex_unlock(&iface->tx_lock);
676}
677
684static inline void net_if_flag_set(struct net_if *iface,
685 enum net_if_flag value)
686{
687 NET_ASSERT(iface);
688 NET_ASSERT(iface->if_dev);
689
690 atomic_set_bit(iface->if_dev->flags, value);
691}
692
701static inline bool net_if_flag_test_and_set(struct net_if *iface,
702 enum net_if_flag value)
703{
704 NET_ASSERT(iface);
705 NET_ASSERT(iface->if_dev);
706
707 return atomic_test_and_set_bit(iface->if_dev->flags, value);
708}
709
716static inline void net_if_flag_clear(struct net_if *iface,
717 enum net_if_flag value)
718{
719 NET_ASSERT(iface);
720 NET_ASSERT(iface->if_dev);
721
722 atomic_clear_bit(iface->if_dev->flags, value);
723}
724
733static inline bool net_if_flag_test_and_clear(struct net_if *iface,
734 enum net_if_flag value)
735{
736 NET_ASSERT(iface);
737 NET_ASSERT(iface->if_dev);
738
739 return atomic_test_and_clear_bit(iface->if_dev->flags, value);
740}
741
750static inline bool net_if_flag_is_set(struct net_if *iface,
751 enum net_if_flag value)
752{
753 NET_ASSERT(iface);
754 NET_ASSERT(iface->if_dev);
755
756 if (iface == NULL) {
757 return false;
758 }
759
760 return atomic_test_bit(iface->if_dev->flags, value);
761}
762
772 struct net_if *iface, enum net_if_oper_state oper_state)
773{
774 NET_ASSERT(iface);
775 NET_ASSERT(iface->if_dev);
776
777 if (oper_state >= NET_IF_OPER_UNKNOWN && oper_state <= NET_IF_OPER_UP) {
778 iface->if_dev->oper_state = oper_state;
779 }
780
781 return iface->if_dev->oper_state;
782}
783
791static inline enum net_if_oper_state net_if_oper_state(struct net_if *iface)
792{
793 NET_ASSERT(iface);
794 NET_ASSERT(iface->if_dev);
795
796 return iface->if_dev->oper_state;
797}
798
807enum net_verdict net_if_send_data(struct net_if *iface, struct net_pkt *pkt);
808
816static inline const struct net_l2 *net_if_l2(struct net_if *iface)
817{
818 if (!iface || !iface->if_dev) {
819 return NULL;
820 }
821
822 return iface->if_dev->l2;
823}
824
833enum net_verdict net_if_recv_data(struct net_if *iface, struct net_pkt *pkt);
834
842static inline void *net_if_l2_data(struct net_if *iface)
843{
844 NET_ASSERT(iface);
845 NET_ASSERT(iface->if_dev);
846
847 return iface->if_dev->l2_data;
848}
849
857static inline const struct device *net_if_get_device(struct net_if *iface)
858{
859 NET_ASSERT(iface);
860 NET_ASSERT(iface->if_dev);
861
862 return iface->if_dev->dev;
863}
864
871void net_if_queue_tx(struct net_if *iface, struct net_pkt *pkt);
872
880static inline bool net_if_is_ip_offloaded(struct net_if *iface)
881{
882#if defined(CONFIG_NET_OFFLOAD)
883 return (iface != NULL && iface->if_dev != NULL &&
884 iface->if_dev->offload != NULL);
885#else
886 ARG_UNUSED(iface);
887
888 return false;
889#endif
890}
891
899bool net_if_is_offloaded(struct net_if *iface);
900
908static inline struct net_offload *net_if_offload(struct net_if *iface)
909{
910#if defined(CONFIG_NET_OFFLOAD)
911 NET_ASSERT(iface);
912 NET_ASSERT(iface->if_dev);
913
914 return iface->if_dev->offload;
915#else
916 ARG_UNUSED(iface);
917
918 return NULL;
919#endif
920}
921
929static inline bool net_if_is_socket_offloaded(struct net_if *iface)
930{
931#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
932 NET_ASSERT(iface);
933 NET_ASSERT(iface->if_dev);
934
935 return (iface->if_dev->socket_offload != NULL);
936#else
937 ARG_UNUSED(iface);
938
939 return false;
940#endif
941}
942
949static inline void net_if_socket_offload_set(
950 struct net_if *iface, net_socket_create_t socket_offload)
951{
952#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
953 NET_ASSERT(iface);
954 NET_ASSERT(iface->if_dev);
955
956 iface->if_dev->socket_offload = socket_offload;
957#else
958 ARG_UNUSED(iface);
959 ARG_UNUSED(socket_offload);
960#endif
961}
962
971{
972#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
973 NET_ASSERT(iface);
974 NET_ASSERT(iface->if_dev);
975
976 return iface->if_dev->socket_offload;
977#else
978 ARG_UNUSED(iface);
979
980 return NULL;
981#endif
982}
983
991static inline struct net_linkaddr *net_if_get_link_addr(struct net_if *iface)
992{
993 NET_ASSERT(iface);
994 NET_ASSERT(iface->if_dev);
995
996 return &iface->if_dev->link_addr;
997}
998
1006static inline struct net_if_config *net_if_get_config(struct net_if *iface)
1007{
1008 NET_ASSERT(iface);
1009
1010 return &iface->config;
1011}
1012
1018#if defined(CONFIG_NET_IPV6_DAD) && defined(CONFIG_NET_NATIVE_IPV6)
1019void net_if_start_dad(struct net_if *iface);
1020#else
1021static inline void net_if_start_dad(struct net_if *iface)
1022{
1023 ARG_UNUSED(iface);
1024}
1025#endif
1026
1032void net_if_start_rs(struct net_if *iface);
1033
1034
1040#if defined(CONFIG_NET_IPV6_ND) && defined(CONFIG_NET_NATIVE_IPV6)
1041void net_if_stop_rs(struct net_if *iface);
1042#else
1043static inline void net_if_stop_rs(struct net_if *iface)
1044{
1045 ARG_UNUSED(iface);
1046}
1047#endif /* CONFIG_NET_IPV6_ND */
1048
1051static inline int net_if_set_link_addr_unlocked(struct net_if *iface,
1052 uint8_t *addr, uint8_t len,
1053 enum net_link_type type)
1054{
1055 if (net_if_flag_is_set(iface, NET_IF_RUNNING)) {
1056 return -EPERM;
1057 }
1058
1059 net_if_get_link_addr(iface)->addr = addr;
1060 net_if_get_link_addr(iface)->len = len;
1061 net_if_get_link_addr(iface)->type = type;
1062
1063 net_hostname_set_postfix(addr, len);
1064
1065 return 0;
1066}
1067
1068int net_if_set_link_addr_locked(struct net_if *iface,
1069 uint8_t *addr, uint8_t len,
1070 enum net_link_type type);
1084static inline int net_if_set_link_addr(struct net_if *iface,
1085 uint8_t *addr, uint8_t len,
1086 enum net_link_type type)
1087{
1088#if defined(CONFIG_NET_RAW_MODE)
1089 return net_if_set_link_addr_unlocked(iface, addr, len, type);
1090#else
1091 return net_if_set_link_addr_locked(iface, addr, len, type);
1092#endif
1093}
1094
1102static inline uint16_t net_if_get_mtu(struct net_if *iface)
1103{
1104 if (iface == NULL) {
1105 return 0U;
1106 }
1107
1108 NET_ASSERT(iface->if_dev);
1109
1110 return iface->if_dev->mtu;
1111}
1112
1119static inline void net_if_set_mtu(struct net_if *iface,
1120 uint16_t mtu)
1121{
1122 if (iface == NULL) {
1123 return;
1124 }
1125
1126 NET_ASSERT(iface->if_dev);
1127
1128 iface->if_dev->mtu = mtu;
1129}
1130
1137static inline void net_if_addr_set_lf(struct net_if_addr *ifaddr,
1138 bool is_infinite)
1139{
1140 NET_ASSERT(ifaddr);
1141
1142 ifaddr->is_infinite = is_infinite;
1143}
1144
1153
1161struct net_if *net_if_lookup_by_dev(const struct device *dev);
1162
1170static inline struct net_if_config *net_if_config_get(struct net_if *iface)
1171{
1172 NET_ASSERT(iface);
1173
1174 return &iface->config;
1175}
1176
1182void net_if_router_rm(struct net_if_router *router);
1183
1189void net_if_set_default(struct net_if *iface);
1190
1197
1206struct net_if *net_if_get_first_by_type(const struct net_l2 *l2);
1207
1215
1216#if defined(CONFIG_NET_L2_IEEE802154)
1223static inline struct net_if *net_if_get_ieee802154(void)
1224{
1225 return net_if_get_first_by_type(&NET_L2_GET_NAME(IEEE802154));
1226}
1227#endif /* CONFIG_NET_L2_IEEE802154 */
1228
1240 struct net_if_ipv6 **ipv6);
1241
1250
1260 struct net_if **iface);
1261
1271 struct in6_addr *addr);
1272
1281__syscall int net_if_ipv6_addr_lookup_by_index(const struct in6_addr *addr);
1282
1294 struct in6_addr *addr,
1296 uint32_t vlifetime);
1297
1308__syscall bool net_if_ipv6_addr_add_by_index(int index,
1309 struct in6_addr *addr,
1311 uint32_t vlifetime);
1312
1320 uint32_t vlifetime);
1321
1330bool net_if_ipv6_addr_rm(struct net_if *iface, const struct in6_addr *addr);
1331
1340__syscall bool net_if_ipv6_addr_rm_by_index(int index,
1341 const struct in6_addr *addr);
1342
1351typedef void (*net_if_ip_addr_cb_t)(struct net_if *iface,
1352 struct net_if_addr *addr,
1353 void *user_data);
1354
1364 void *user_data);
1365
1375 const struct in6_addr *addr);
1376
1385bool net_if_ipv6_maddr_rm(struct net_if *iface, const struct in6_addr *addr);
1386
1398 struct net_if **iface);
1399
1410typedef void (*net_if_mcast_callback_t)(struct net_if *iface,
1411 const struct net_addr *addr,
1412 bool is_joined);
1413
1425
1427 struct net_if *iface;
1428
1431};
1432
1442 struct net_if *iface,
1444
1451
1459void net_if_mcast_monitor(struct net_if *iface, const struct net_addr *addr,
1460 bool is_joined);
1461
1469 struct net_if_mcast_addr *addr);
1470
1478static inline bool net_if_ipv6_maddr_is_joined(struct net_if_mcast_addr *addr)
1479{
1480 NET_ASSERT(addr);
1481
1482 return addr->is_joined;
1483}
1484
1492 struct net_if_mcast_addr *addr);
1493
1503 struct in6_addr *addr);
1504
1515 struct in6_addr *addr,
1516 uint8_t len);
1517
1529 struct in6_addr *prefix,
1530 uint8_t len,
1532
1542bool net_if_ipv6_prefix_rm(struct net_if *iface, struct in6_addr *addr,
1543 uint8_t len);
1544
1552 bool is_infinite)
1553{
1554 prefix->is_infinite = is_infinite;
1555}
1556
1565
1572
1583bool net_if_ipv6_addr_onlink(struct net_if **iface, struct in6_addr *addr);
1584
1591#if defined(CONFIG_NET_NATIVE_IPV6)
1592static inline struct in6_addr *net_if_router_ipv6(struct net_if_router *router)
1593{
1594 NET_ASSERT(router);
1595
1596 return &router->address.in6_addr;
1597}
1598#else
1599static inline struct in6_addr *net_if_router_ipv6(struct net_if_router *router)
1600{
1601 static struct in6_addr addr;
1602
1603 ARG_UNUSED(router);
1604
1605 return &addr;
1606}
1607#endif
1608
1619 struct in6_addr *addr);
1620
1631 struct in6_addr *addr);
1632
1641
1652 struct in6_addr *addr,
1653 uint16_t router_lifetime);
1654
1663
1673
1681
1682/* The old hop limit setter function is deprecated because the naming
1683 * of it was incorrect. The API name was missing "_if_" so this function
1684 * should not be used.
1685 */
1686__deprecated
1687static inline void net_ipv6_set_hop_limit(struct net_if *iface,
1688 uint8_t hop_limit)
1689{
1690 net_if_ipv6_set_hop_limit(iface, hop_limit);
1691}
1692
1702
1710
1718 uint32_t reachable_time)
1719{
1720#if defined(CONFIG_NET_NATIVE_IPV6)
1721 NET_ASSERT(iface);
1722
1723 if (!iface->config.ip.ipv6) {
1724 return;
1725 }
1726
1727 iface->config.ip.ipv6->base_reachable_time = reachable_time;
1728#endif
1729}
1730
1739{
1740#if defined(CONFIG_NET_NATIVE_IPV6)
1741 NET_ASSERT(iface);
1742
1743 if (!iface->config.ip.ipv6) {
1744 return 0;
1745 }
1746
1747 return iface->config.ip.ipv6->reachable_time;
1748#else
1749 return 0;
1750#endif
1751}
1752
1761
1768static inline void net_if_ipv6_set_reachable_time(struct net_if_ipv6 *ipv6)
1769{
1770#if defined(CONFIG_NET_NATIVE_IPV6)
1771 if (ipv6 == NULL) {
1772 return;
1773 }
1774
1776#endif
1777}
1778
1785static inline void net_if_ipv6_set_retrans_timer(struct net_if *iface,
1786 uint32_t retrans_timer)
1787{
1788#if defined(CONFIG_NET_NATIVE_IPV6)
1789 NET_ASSERT(iface);
1790
1791 if (!iface->config.ip.ipv6) {
1792 return;
1793 }
1794
1795 iface->config.ip.ipv6->retrans_timer = retrans_timer;
1796#endif
1797}
1798
1807{
1808#if defined(CONFIG_NET_NATIVE_IPV6)
1809 NET_ASSERT(iface);
1810
1811 if (!iface->config.ip.ipv6) {
1812 return 0;
1813 }
1814
1815 return iface->config.ip.ipv6->retrans_timer;
1816#else
1817 return 0;
1818#endif
1819}
1820
1832#if defined(CONFIG_NET_NATIVE_IPV6)
1833const struct in6_addr *net_if_ipv6_select_src_addr(struct net_if *iface,
1834 const struct in6_addr *dst);
1835#else
1836static inline const struct in6_addr *net_if_ipv6_select_src_addr(
1837 struct net_if *iface, const struct in6_addr *dst)
1838{
1839 ARG_UNUSED(iface);
1840 ARG_UNUSED(dst);
1841
1842 return NULL;
1843}
1844#endif
1845
1855#if defined(CONFIG_NET_NATIVE_IPV6)
1856struct net_if *net_if_ipv6_select_src_iface(const struct in6_addr *dst);
1857#else
1859 const struct in6_addr *dst)
1860{
1861 ARG_UNUSED(dst);
1862
1863 return NULL;
1864}
1865#endif
1866
1876struct in6_addr *net_if_ipv6_get_ll(struct net_if *iface,
1877 enum net_addr_state addr_state);
1878
1889 struct net_if **iface);
1890
1898void net_if_ipv6_dad_failed(struct net_if *iface, const struct in6_addr *addr);
1899
1912 struct net_if **iface);
1913
1925 struct net_if_ipv4 **ipv4);
1926
1935
1944
1951void net_if_ipv4_set_ttl(struct net_if *iface, uint8_t ttl);
1952
1961
1969
1979 struct net_if **iface);
1980
1992 struct in_addr *addr,
1994 uint32_t vlifetime);
1995
2004bool net_if_ipv4_addr_rm(struct net_if *iface, const struct in_addr *addr);
2005
2014__syscall int net_if_ipv4_addr_lookup_by_index(const struct in_addr *addr);
2015
2026__syscall bool net_if_ipv4_addr_add_by_index(int index,
2027 struct in_addr *addr,
2029 uint32_t vlifetime);
2030
2039__syscall bool net_if_ipv4_addr_rm_by_index(int index,
2040 const struct in_addr *addr);
2041
2051 void *user_data);
2052
2062 const struct in_addr *addr);
2063
2072bool net_if_ipv4_maddr_rm(struct net_if *iface, const struct in_addr *addr);
2073
2085 struct net_if **iface);
2086
2094 struct net_if_mcast_addr *addr);
2095
2103static inline bool net_if_ipv4_maddr_is_joined(struct net_if_mcast_addr *addr)
2104{
2105 NET_ASSERT(addr);
2106
2107 return addr->is_joined;
2108}
2109
2117 struct net_if_mcast_addr *addr);
2118
2125#if defined(CONFIG_NET_NATIVE_IPV4)
2126static inline struct in_addr *net_if_router_ipv4(struct net_if_router *router)
2127{
2128 NET_ASSERT(router);
2129
2130 return &router->address.in_addr;
2131}
2132#else
2133static inline struct in_addr *net_if_router_ipv4(struct net_if_router *router)
2134{
2135 static struct in_addr addr;
2136
2137 ARG_UNUSED(router);
2138
2139 return &addr;
2140}
2141#endif
2142
2153 struct in_addr *addr);
2154
2165 struct in_addr *addr);
2177 struct in_addr *addr,
2178 bool is_default,
2179 uint16_t router_lifetime);
2180
2189
2199 const struct in_addr *addr);
2200
2210 const struct in_addr *addr);
2211
2221#if defined(CONFIG_NET_NATIVE_IPV4)
2222struct net_if *net_if_ipv4_select_src_iface(const struct in_addr *dst);
2223#else
2225 const struct in_addr *dst)
2226{
2227 ARG_UNUSED(dst);
2228
2229 return NULL;
2230}
2231#endif
2232
2244#if defined(CONFIG_NET_NATIVE_IPV4)
2245const struct in_addr *net_if_ipv4_select_src_addr(struct net_if *iface,
2246 const struct in_addr *dst);
2247#else
2248static inline const struct in_addr *net_if_ipv4_select_src_addr(
2249 struct net_if *iface, const struct in_addr *dst)
2250{
2251 ARG_UNUSED(iface);
2252 ARG_UNUSED(dst);
2253
2254 return NULL;
2255}
2256#endif
2257
2267struct in_addr *net_if_ipv4_get_ll(struct net_if *iface,
2268 enum net_addr_state addr_state);
2269
2280 enum net_addr_state addr_state);
2281
2290
2298 const struct in_addr *netmask);
2299
2308__syscall bool net_if_ipv4_set_netmask_by_index(int index,
2309 const struct in_addr *netmask);
2310
2317void net_if_ipv4_set_gw(struct net_if *iface, const struct in_addr *gw);
2318
2327__syscall bool net_if_ipv4_set_gw_by_index(int index, const struct in_addr *gw);
2328
2339struct net_if *net_if_select_src_iface(const struct sockaddr *dst);
2340
2349typedef void (*net_if_link_callback_t)(struct net_if *iface,
2350 struct net_linkaddr *dst,
2351 int status);
2352
2364
2367};
2368
2377
2384
2392void net_if_call_link_cb(struct net_if *iface, struct net_linkaddr *lladdr,
2393 int status);
2394
2405
2417
2428__syscall struct net_if *net_if_get_by_index(int index);
2429
2437int net_if_get_by_iface(struct net_if *iface);
2438
2446typedef void (*net_if_cb_t)(struct net_if *iface, void *user_data);
2447
2455void net_if_foreach(net_if_cb_t cb, void *user_data);
2456
2464int net_if_up(struct net_if *iface);
2465
2473static inline bool net_if_is_up(struct net_if *iface)
2474{
2475 NET_ASSERT(iface);
2476
2477 return net_if_flag_is_set(iface, NET_IF_UP) &&
2479}
2480
2488int net_if_down(struct net_if *iface);
2489
2497static inline bool net_if_is_admin_up(struct net_if *iface)
2498{
2499 NET_ASSERT(iface);
2500
2501 return net_if_flag_is_set(iface, NET_IF_UP);
2502}
2503
2512void net_if_carrier_on(struct net_if *iface);
2513
2522void net_if_carrier_off(struct net_if *iface);
2523
2531static inline bool net_if_is_carrier_ok(struct net_if *iface)
2532{
2533 NET_ASSERT(iface);
2534
2535 return net_if_flag_is_set(iface, NET_IF_LOWER_UP);
2536}
2537
2548void net_if_dormant_on(struct net_if *iface);
2549
2558void net_if_dormant_off(struct net_if *iface);
2559
2567static inline bool net_if_is_dormant(struct net_if *iface)
2568{
2569 NET_ASSERT(iface);
2570
2571 return net_if_flag_is_set(iface, NET_IF_DORMANT);
2572}
2573
2574#if defined(CONFIG_NET_PKT_TIMESTAMP) && defined(CONFIG_NET_NATIVE)
2582typedef void (*net_if_timestamp_callback_t)(struct net_pkt *pkt);
2583
2592struct net_if_timestamp_cb {
2594 sys_snode_t node;
2595
2599 struct net_pkt *pkt;
2600
2604 struct net_if *iface;
2605
2607 net_if_timestamp_callback_t cb;
2608};
2609
2620void net_if_register_timestamp_cb(struct net_if_timestamp_cb *handle,
2621 struct net_pkt *pkt,
2622 struct net_if *iface,
2623 net_if_timestamp_callback_t cb);
2624
2630void net_if_unregister_timestamp_cb(struct net_if_timestamp_cb *handle);
2631
2637void net_if_call_timestamp_cb(struct net_pkt *pkt);
2638
2639/*
2640 * @brief Add timestamped TX buffer to be handled
2641 *
2642 * @param pkt Timestamped buffer
2643 */
2644void net_if_add_tx_timestamp(struct net_pkt *pkt);
2645#endif /* CONFIG_NET_PKT_TIMESTAMP */
2646
2656#if defined(CONFIG_NET_PROMISCUOUS_MODE)
2657int net_if_set_promisc(struct net_if *iface);
2658#else
2659static inline int net_if_set_promisc(struct net_if *iface)
2660{
2661 ARG_UNUSED(iface);
2662
2663 return -ENOTSUP;
2664}
2665#endif
2666
2672#if defined(CONFIG_NET_PROMISCUOUS_MODE)
2673void net_if_unset_promisc(struct net_if *iface);
2674#else
2675static inline void net_if_unset_promisc(struct net_if *iface)
2676{
2677 ARG_UNUSED(iface);
2678}
2679#endif
2680
2689#if defined(CONFIG_NET_PROMISCUOUS_MODE)
2690bool net_if_is_promisc(struct net_if *iface);
2691#else
2692static inline bool net_if_is_promisc(struct net_if *iface)
2693{
2694 ARG_UNUSED(iface);
2695
2696 return false;
2697}
2698#endif
2699
2709static inline bool net_if_are_pending_tx_packets(struct net_if *iface)
2710{
2711#if defined(CONFIG_NET_POWER_MANAGEMENT)
2712 return !!iface->tx_pending;
2713#else
2714 ARG_UNUSED(iface);
2715
2716 return false;
2717#endif
2718}
2719
2720#ifdef CONFIG_NET_POWER_MANAGEMENT
2728int net_if_suspend(struct net_if *iface);
2729
2737int net_if_resume(struct net_if *iface);
2738
2746bool net_if_is_suspended(struct net_if *iface);
2747#endif /* CONFIG_NET_POWER_MANAGEMENT */
2748
2756bool net_if_is_wifi(struct net_if *iface);
2757
2764
2779int net_if_get_name(struct net_if *iface, char *buf, int len);
2780
2795int net_if_set_name(struct net_if *iface, const char *buf);
2796
2804int net_if_get_by_name(const char *name);
2805
2807struct net_if_api {
2808 void (*init)(struct net_if *iface);
2809};
2810
2811#define NET_IF_DHCPV4_INIT \
2812 IF_ENABLED(UTIL_AND(IS_ENABLED(CONFIG_NET_DHCPV4), \
2813 IS_ENABLED(CONFIG_NET_NATIVE_IPV4)), \
2814 (.dhcpv4.state = NET_DHCPV4_DISABLED,))
2815
2816#define NET_IF_DHCPV6_INIT \
2817 IF_ENABLED(UTIL_AND(IS_ENABLED(CONFIG_NET_DHCPV6), \
2818 IS_ENABLED(CONFIG_NET_NATIVE_IPV6)), \
2819 (.dhcpv6.state = NET_DHCPV6_DISABLED,))
2820
2821#define NET_IF_CONFIG_INIT \
2822 .config = { \
2823 IF_ENABLED(CONFIG_NET_IP, (.ip = {},)) \
2824 NET_IF_DHCPV4_INIT \
2825 NET_IF_DHCPV6_INIT \
2826 }
2827
2828#define NET_IF_GET_NAME(dev_id, sfx) __net_if_##dev_id##_##sfx
2829#define NET_IF_DEV_GET_NAME(dev_id, sfx) __net_if_dev_##dev_id##_##sfx
2830
2831#define NET_IF_GET(dev_id, sfx) \
2832 ((struct net_if *)&NET_IF_GET_NAME(dev_id, sfx))
2833
2834#define NET_IF_INIT(dev_id, sfx, _l2, _mtu, _num_configs) \
2835 static STRUCT_SECTION_ITERABLE(net_if_dev, \
2836 NET_IF_DEV_GET_NAME(dev_id, sfx)) = { \
2837 .dev = &(DEVICE_NAME_GET(dev_id)), \
2838 .l2 = &(NET_L2_GET_NAME(_l2)), \
2839 .l2_data = &(NET_L2_GET_DATA(dev_id, sfx)), \
2840 .mtu = _mtu, \
2841 .flags = {BIT(NET_IF_LOWER_UP)}, \
2842 }; \
2843 static Z_DECL_ALIGN(struct net_if) \
2844 NET_IF_GET_NAME(dev_id, sfx)[_num_configs] \
2845 __used __in_section(_net_if, static, \
2846 dev_id) = { \
2847 [0 ... (_num_configs - 1)] = { \
2848 .if_dev = &(NET_IF_DEV_GET_NAME(dev_id, sfx)), \
2849 NET_IF_CONFIG_INIT \
2850 } \
2851 }
2852
2853#define NET_IF_OFFLOAD_INIT(dev_id, sfx, _mtu) \
2854 static STRUCT_SECTION_ITERABLE(net_if_dev, \
2855 NET_IF_DEV_GET_NAME(dev_id, sfx)) = { \
2856 .dev = &(DEVICE_NAME_GET(dev_id)), \
2857 .mtu = _mtu, \
2858 .l2 = &(NET_L2_GET_NAME(OFFLOADED_NETDEV)), \
2859 .flags = {BIT(NET_IF_LOWER_UP)}, \
2860 }; \
2861 static Z_DECL_ALIGN(struct net_if) \
2862 NET_IF_GET_NAME(dev_id, sfx)[NET_IF_MAX_CONFIGS] \
2863 __used __in_section(_net_if, static, \
2864 dev_id) = { \
2865 [0 ... (NET_IF_MAX_CONFIGS - 1)] = { \
2866 .if_dev = &(NET_IF_DEV_GET_NAME(dev_id, sfx)), \
2867 NET_IF_CONFIG_INIT \
2868 } \
2869 }
2870
2873/* Network device initialization macros */
2874
2875#define Z_NET_DEVICE_INIT(node_id, dev_id, name, init_fn, pm, data, \
2876 config, prio, api, l2, l2_ctx_type, mtu) \
2877 Z_DEVICE_STATE_DEFINE(dev_id); \
2878 Z_DEVICE_DEFINE(node_id, dev_id, name, init_fn, pm, data, \
2879 config, POST_KERNEL, prio, api, \
2880 &Z_DEVICE_STATE_NAME(dev_id)); \
2881 NET_L2_DATA_INIT(dev_id, 0, l2_ctx_type); \
2882 NET_IF_INIT(dev_id, 0, l2, mtu, NET_IF_MAX_CONFIGS)
2883
2903#define NET_DEVICE_INIT(dev_id, name, init_fn, pm, data, config, prio, \
2904 api, l2, l2_ctx_type, mtu) \
2905 Z_NET_DEVICE_INIT(DT_INVALID_NODE, dev_id, name, init_fn, pm, \
2906 data, config, prio, api, l2, l2_ctx_type, mtu)
2907
2926#define NET_DEVICE_DT_DEFINE(node_id, init_fn, pm, data, \
2927 config, prio, api, l2, l2_ctx_type, mtu) \
2928 Z_NET_DEVICE_INIT(node_id, Z_DEVICE_DT_DEV_ID(node_id), \
2929 DEVICE_DT_NAME(node_id), init_fn, pm, data, \
2930 config, prio, api, l2, l2_ctx_type, mtu)
2931
2940#define NET_DEVICE_DT_INST_DEFINE(inst, ...) \
2941 NET_DEVICE_DT_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
2942
2943#define Z_NET_DEVICE_INIT_INSTANCE(node_id, dev_id, name, instance, \
2944 init_fn, pm, data, config, prio, \
2945 api, l2, l2_ctx_type, mtu) \
2946 Z_DEVICE_STATE_DEFINE(dev_id); \
2947 Z_DEVICE_DEFINE(node_id, dev_id, name, init_fn, pm, data, \
2948 config, POST_KERNEL, prio, api, \
2949 &Z_DEVICE_STATE_NAME(dev_id)); \
2950 NET_L2_DATA_INIT(dev_id, instance, l2_ctx_type); \
2951 NET_IF_INIT(dev_id, instance, l2, mtu, NET_IF_MAX_CONFIGS)
2952
2976#define NET_DEVICE_INIT_INSTANCE(dev_id, name, instance, init_fn, pm, \
2977 data, config, prio, api, l2, \
2978 l2_ctx_type, mtu) \
2979 Z_NET_DEVICE_INIT_INSTANCE(DT_INVALID_NODE, dev_id, name, \
2980 instance, init_fn, pm, data, config, \
2981 prio, api, l2, l2_ctx_type, mtu)
2982
3005#define NET_DEVICE_DT_DEFINE_INSTANCE(node_id, instance, init_fn, pm, \
3006 data, config, prio, api, l2, \
3007 l2_ctx_type, mtu) \
3008 Z_NET_DEVICE_INIT_INSTANCE(node_id, \
3009 Z_DEVICE_DT_DEV_ID(node_id), \
3010 DEVICE_DT_NAME(node_id), instance, \
3011 init_fn, pm, data, config, prio, \
3012 api, l2, l2_ctx_type, mtu)
3013
3023#define NET_DEVICE_DT_INST_DEFINE_INSTANCE(inst, ...) \
3024 NET_DEVICE_DT_DEFINE_INSTANCE(DT_DRV_INST(inst), __VA_ARGS__)
3025
3026#define Z_NET_DEVICE_OFFLOAD_INIT(node_id, dev_id, name, init_fn, pm, \
3027 data, config, prio, api, mtu) \
3028 Z_DEVICE_STATE_DEFINE(dev_id); \
3029 Z_DEVICE_DEFINE(node_id, dev_id, name, init_fn, pm, data, \
3030 config, POST_KERNEL, prio, api, \
3031 &Z_DEVICE_STATE_NAME(dev_id)); \
3032 NET_IF_OFFLOAD_INIT(dev_id, 0, mtu)
3033
3053#define NET_DEVICE_OFFLOAD_INIT(dev_id, name, init_fn, pm, data, \
3054 config, prio, api, mtu) \
3055 Z_NET_DEVICE_OFFLOAD_INIT(DT_INVALID_NODE, dev_id, name, \
3056 init_fn, pm, data, config, prio, api, \
3057 mtu)
3058
3077#define NET_DEVICE_DT_OFFLOAD_DEFINE(node_id, init_fn, pm, data, \
3078 config, prio, api, mtu) \
3079 Z_NET_DEVICE_OFFLOAD_INIT(node_id, Z_DEVICE_DT_DEV_ID(node_id), \
3080 DEVICE_DT_NAME(node_id), init_fn, pm, \
3081 data, config, prio, api, mtu)
3082
3092#define NET_DEVICE_DT_INST_OFFLOAD_DEFINE(inst, ...) \
3093 NET_DEVICE_DT_OFFLOAD_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
3094
3100#define NET_IFACE_COUNT(_dst) \
3101 do { \
3102 extern struct net_if _net_if_list_start[]; \
3103 extern struct net_if _net_if_list_end[]; \
3104 *(_dst) = ((uintptr_t)_net_if_list_end - \
3105 (uintptr_t)_net_if_list_start) / \
3106 sizeof(struct net_if); \
3107 } while (0)
3108
3109#ifdef __cplusplus
3110}
3111#endif
3112
3113#include <syscalls/net_if.h>
3114
3119#endif /* ZEPHYR_INCLUDE_NET_NET_IF_H_ */
struct z_thread_stack_element k_thread_stack_t
Typedef of struct z_thread_stack_element.
Definition: arch_interface.h:45
DHCPv4 Client Handler.
DHCPv6 client.
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:1361
net_addr_state
What is the current state of the network address.
Definition: net_ip.h:445
net_addr_type
How the network address is assigned to network interface.
Definition: net_ip.h:453
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:98
static int net_hostname_set_postfix(const uint8_t *hostname_postfix, int postfix_len)
Set the device hostname postfix.
Definition: hostname.h:103
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:2531
static bool net_if_is_admin_up(struct net_if *iface)
Check if interface was brought up by the administrator.
Definition: net_if.h:2497
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:553
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:771
static void net_if_unlock(struct net_if *iface)
Definition: net_if.h:646
int net_if_down(struct net_if *iface)
Bring interface down.
bool net_if_need_calc_tx_checksum(struct net_if *iface)
Check if network packet checksum calculation can be avoided or not when sending the packet.
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:2133
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.
static void net_ipv6_set_hop_limit(struct net_if *iface, uint8_t hop_limit)
Definition: net_if.h:1687
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:2349
static void * net_if_l2_data(struct net_if *iface)
Get a pointer to the interface L2 private data.
Definition: net_if.h:842
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:2709
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:701
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:991
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:1836
static struct net_offload * net_if_offload(struct net_if *iface)
Return the IP offload plugin.
Definition: net_if.h:908
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:1084
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:684
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.
struct net_if_ipv6_prefix * net_if_ipv6_prefix_get(struct net_if *iface, struct in6_addr *addr)
Return prefix that corresponds to this IPv6 address.
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.
int net_if_get_name(struct net_if *iface, char *buf, int len)
Get network interface name.
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:880
static bool net_if_is_dormant(struct net_if *iface)
Check if the interface is dormant.
Definition: net_if.h:2567
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:1410
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:1119
bool net_if_need_calc_rx_checksum(struct net_if *iface)
Check if received network packet checksum calculation can be avoided or not.
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.
static void net_if_tx_unlock(struct net_if *iface)
Definition: net_if.h:667
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 is up and running.
Definition: net_if.h:2473
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:1768
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.
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.
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.
static void net_if_start_dad(struct net_if *iface)
Start duplicate address detection procedure.
Definition: net_if.h:1021
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:2675
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:949
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:1738
static bool net_if_is_promisc(struct net_if *iface)
Check if promiscuous mode is set or not.
Definition: net_if.h:2692
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:2103
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:1551
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.
static void net_if_lock(struct net_if *iface)
Definition: net_if.h:639
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:1043
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:1717
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.
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:733
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:1478
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:1102
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:2248
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:1785
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:1599
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:1806
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:1351
bool net_if_ipv4_set_gw_by_index(int index, const struct in_addr *gw)
Set IPv4 gateway for an interface index.
net_if_oper_state
Network interface operational status (RFC 2863).
Definition: net_if.h:236
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:1858
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:750
static struct net_if_config * net_if_config_get(struct net_if *iface)
Get network interface IP config.
Definition: net_if.h:1170
static struct net_if_config * net_if_get_config(struct net_if *iface)
Return network configuration for this network interface.
Definition: net_if.h:1006
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:1137
net_if_flag
Network interface flags.
Definition: net_if.h:178
static const struct device * net_if_get_device(struct net_if *iface)
Get an network interface's device.
Definition: net_if.h:857
void(* net_if_cb_t)(struct net_if *iface, void *user_data)
Callback used while iterating over network interfaces.
Definition: net_if.h:2446
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:929
static int net_if_set_promisc(struct net_if *iface)
Set network interface into promiscuous mode.
Definition: net_if.h:2659
static const struct net_l2 * net_if_l2(struct net_if *iface)
Get a pointer to the interface L2.
Definition: net_if.h:816
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:970
static void net_if_tx_lock(struct net_if *iface)
Definition: net_if.h:656
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:2224
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:716
@ NET_IF_OPER_TESTING
Definition: net_if.h:241
@ NET_IF_OPER_DORMANT
Definition: net_if.h:242
@ NET_IF_OPER_UP
Definition: net_if.h:243
@ NET_IF_OPER_NOTPRESENT
Definition: net_if.h:238
@ NET_IF_OPER_UNKNOWN
Definition: net_if.h:237
@ NET_IF_OPER_DOWN
Definition: net_if.h:239
@ NET_IF_OPER_LOWERLAYERDOWN
Definition: net_if.h:240
@ NET_IF_NO_AUTO_START
Do not start the interface immediately after initialization.
Definition: net_if.h:194
@ NET_IF_IPV6_NO_MLD
IPv6 Multicast Listener Discovery disabled.
Definition: net_if.h:224
@ NET_IF_POINTOPOINT
Interface is pointopoint.
Definition: net_if.h:183
@ NET_IF_IPV6_NO_ND
IPv6 Neighbor Discovery disabled.
Definition: net_if.h:221
@ NET_IF_FORWARD_MULTICASTS
Flag defines if received multicasts of other interface are forwarded on this interface.
Definition: net_if.h:203
@ NET_IF_IPV4
Interface supports IPv4.
Definition: net_if.h:206
@ NET_IF_PROMISC
Interface is in promiscuous mode.
Definition: net_if.h:186
@ NET_IF_DORMANT
Driver signals dormant.
Definition: net_if.h:218
@ NET_IF_SUSPENDED
Power management specific: interface is being suspended.
Definition: net_if.h:197
@ NET_IF_IPV6
Interface supports IPv6.
Definition: net_if.h:209
@ NET_IF_UP
Interface is admin up.
Definition: net_if.h:180
@ NET_IF_LOWER_UP
Driver signals L1 is up.
Definition: net_if.h:215
@ NET_IF_RUNNING
Interface up and running (ready to receive and transmit).
Definition: net_if.h:212
@ NET_IF_NO_TX_LOCK
Mutex locking on TX data path disabled on the interface.
Definition: net_if.h:227
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:115
#define EPERM
Not owner.
Definition: errno.h:40
Hostname configuration definitions.
IPv4 Autoconfiguration.
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 statistics.
Network timer with wrap around.
flags
Definition: parser.h:96
state
Definition: parser_state.h:29
__UINT32_TYPE__ uint32_t
Definition: stdint.h:90
__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:387
IPv6 address struct.
Definition: net_ip.h:139
IPv4 address struct.
Definition: net_ip.h:151
Definition: kernel.h:2374
Mutex Structure.
Definition: kernel.h:2900
Thread Structure.
Definition: thread.h:250
DHCPv6 client configuration parameters.
Definition: dhcpv6.h:58
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:83
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:77
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:80
IP and other configuration related data for network interface.
Definition: net_if.h:492
Network Interface Device structure.
Definition: net_if.h:569
enum net_if_oper_state oper_state
RFC 2863 operational status.
Definition: net_if.h:605
const struct net_l2 *const l2
Interface's L2 layer.
Definition: net_if.h:574
void * l2_data
Interface's private L2 data pointer.
Definition: net_if.h:577
uint16_t mtu
The hardware MTU.
Definition: net_if.h:595
const struct device * dev
The actually device driver instance the net_if is related to.
Definition: net_if.h:571
struct net_linkaddr link_addr
The hardware link address.
Definition: net_if.h:583
atomic_t flags[ATOMIC_BITMAP_SIZE(NET_IF_NUM_FLAGS)]
Definition: net_if.h:580
Network interface IP address configuration.
Definition: net_if.h:479
Definition: net_if.h:371
uint8_t mcast_ttl
IPv4 time-to-live for multicast packets.
Definition: net_if.h:388
struct net_if_addr unicast[NET_IF_MAX_IPV4_ADDR]
Unicast IP addresses.
Definition: net_if.h:373
struct in_addr netmask
Netmask.
Definition: net_if.h:382
struct in_addr gw
Gateway.
Definition: net_if.h:379
uint8_t ttl
IPv4 time-to-live.
Definition: net_if.h:385
struct net_if_mcast_addr mcast[NET_IF_MAX_IPV4_MADDR]
Multicast IP addresses.
Definition: net_if.h:376
Network Interface IPv6 prefixes.
Definition: net_if.h:122
struct net_if * iface
Backpointer to network interface where this prefix is used.
Definition: net_if.h:130
uint8_t is_infinite
Is the IP prefix valid forever.
Definition: net_if.h:136
uint8_t len
Prefix length.
Definition: net_if.h:133
struct in6_addr prefix
IPv6 prefix.
Definition: net_if.h:127
uint8_t is_used
Is this prefix used or not.
Definition: net_if.h:139
struct net_timeout lifetime
Prefix lifetime.
Definition: net_if.h:124
Definition: net_if.h:262
struct net_if_ipv6_prefix prefix[NET_IF_MAX_IPV6_PREFIX]
Prefixes.
Definition: net_if.h:270
uint32_t base_reachable_time
Default reachable time (RFC 4861, page 52)
Definition: net_if.h:273
uint8_t hop_limit
IPv6 hop limit.
Definition: net_if.h:292
struct net_if_mcast_addr mcast[NET_IF_MAX_IPV6_MADDR]
Multicast IP addresses.
Definition: net_if.h:267
uint32_t retrans_timer
Retransmit timer (RFC 4861, page 52)
Definition: net_if.h:279
struct net_if_addr unicast[NET_IF_MAX_IPV6_ADDR]
Unicast IP addresses.
Definition: net_if.h:264
uint8_t mcast_hop_limit
IPv6 multicast hop limit.
Definition: net_if.h:295
uint32_t reachable_time
Reachable time (RFC 4861, page 20)
Definition: net_if.h:276
Network Interface multicast IP addresses.
Definition: net_if.h:93
struct net_addr address
IP address.
Definition: net_if.h:95
uint8_t is_joined
Did we join to this group.
Definition: net_if.h:112
uint8_t is_used
Is this multicast IP address used or not.
Definition: net_if.h:109
Multicast monitor handler struct.
Definition: net_if.h:1422
sys_snode_t node
Node information for the slist.
Definition: net_if.h:1424
net_if_mcast_callback_t cb
Multicast callback.
Definition: net_if.h:1430
struct net_if * iface
Network interface.
Definition: net_if.h:1427
Information about routers in the system.
Definition: net_if.h:149
struct net_if * iface
Network interface the router is connected to.
Definition: net_if.h:157
uint8_t is_default
Is default router.
Definition: net_if.h:169
uint16_t lifetime
Router lifetime.
Definition: net_if.h:163
uint8_t is_infinite
Is the router valid forever.
Definition: net_if.h:172
uint8_t is_used
Is this router used or not.
Definition: net_if.h:166
struct net_addr address
IP address.
Definition: net_if.h:154
sys_snode_t node
Slist lifetime timer node.
Definition: net_if.h:151
uint32_t life_start
Router life timer start.
Definition: net_if.h:160
Network Interface structure.
Definition: net_if.h:615
struct net_if_dev * if_dev
The net_if_dev instance the net_if is related to.
Definition: net_if.h:617
struct net_if_config config
Network interface instance configuration.
Definition: net_if.h:625
struct k_mutex lock
Definition: net_if.h:635
struct k_mutex tx_lock
Definition: net_if.h:636
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:63
All network statistics in one struct.
Definition: net_stats.h:292
Generic struct for handling network timeouts.
Definition: net_timeout.h:55
Network traffic class.
Definition: net_if.h:536
k_thread_stack_t * stack
Stack for this handler.
Definition: net_if.h:544
struct k_thread handler
Traffic class handler thread.
Definition: net_if.h:541
struct k_fifo fifo
Fifo for handling this Tx or Rx packet.
Definition: net_if.h:538
Generic sockaddr struct.
Definition: net_ip.h:347