Zephyr API Documentation 4.4.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
net_context.h
Go to the documentation of this file.
1
6
7/*
8 * Copyright (c) 2016 Intel Corporation
9 * Copyright (c) 2021 Nordic Semiconductor
10 * Copyright (c) 2025 Aerlync Labs Inc.
11 * Copyright 2025 NXP
12 *
13 * SPDX-License-Identifier: Apache-2.0
14 */
15
16#ifndef ZEPHYR_INCLUDE_NET_NET_CONTEXT_H_
17#define ZEPHYR_INCLUDE_NET_NET_CONTEXT_H_
18
27
28#include <zephyr/kernel.h>
29#include <zephyr/sys/atomic.h>
30
31#include <zephyr/net/net_ip.h>
32#include <zephyr/net/net_if.h>
34
35#ifdef __cplusplus
36extern "C" {
37#endif
38
40#define NET_CONTEXT_IN_USE BIT(0)
41
43
45enum net_context_state {
46 NET_CONTEXT_IDLE = 0,
47 NET_CONTEXT_UNCONNECTED = 0,
48 NET_CONTEXT_CONFIGURING = 1,
49 NET_CONTEXT_CONNECTING = 1,
50 NET_CONTEXT_READY = 2,
51 NET_CONTEXT_CONNECTED = 2,
52 NET_CONTEXT_LISTENING = 3,
53};
54
56
62#define NET_CONTEXT_FAMILY (BIT(3) | BIT(4) | BIT(5))
63
65#define NET_CONTEXT_TYPE (BIT(6) | BIT(7))
66
68#define NET_CONTEXT_REMOTE_ADDR_SET BIT(8)
69
71#define NET_CONTEXT_BOUND_TO_IFACE BIT(9)
72
73struct net_context;
74
95typedef void (*net_context_recv_cb_t)(struct net_context *context,
96 struct net_pkt *pkt,
97 union net_ip_header *ip_hdr,
98 union net_proto_header *proto_hdr,
99 int status,
100 void *user_data);
101
116typedef void (*net_context_send_cb_t)(struct net_context *context,
117 int status,
118 void *user_data);
119
136typedef void (*net_tcp_accept_cb_t)(struct net_context *new_context,
137 struct net_sockaddr *addr,
138 net_socklen_t addrlen,
139 int status,
140 void *user_data);
141
163typedef void (*net_context_connect_cb_t)(struct net_context *context,
164 int status,
165 void *user_data);
166
167/* The net_pkt_get_slab_func_t is here in order to avoid circular
168 * dependency between net_pkt.h and net_context.h
169 */
178typedef struct k_mem_slab *(*net_pkt_get_slab_func_t)(void);
179
180/* The net_pkt_get_pool_func_t is here in order to avoid circular
181 * dependency between net_pkt.h and net_context.h
182 */
191typedef struct net_buf_pool *(*net_pkt_get_pool_func_t)(void);
192
193struct net_tcp;
194
195struct net_conn_handle;
196
203__net_socket struct net_context {
207
211
215
218 struct k_mutex lock;
219
223 struct net_sockaddr_ptr local;
224
229
231 struct net_conn_handle *conn_handler;
232
237
242
247
248#if defined(CONFIG_NET_CONTEXT_NET_PKT_POOL)
252
255 net_pkt_get_pool_func_t data_pool;
256#endif /* CONFIG_NET_CONTEXT_NET_PKT_POOL */
257
258#if defined(CONFIG_NET_TCP)
260 void *tcp;
261#endif /* CONFIG_NET_TCP */
262
263#if defined(CONFIG_NET_CONTEXT_SYNC_RECV)
267 struct k_sem recv_data_wait;
268#endif /* CONFIG_NET_CONTEXT_SYNC_RECV */
269
270#if defined(CONFIG_NET_CONTEXT_LINGER)
275 struct k_sem linger_sem;
276#endif /* CONFIG_NET_CONTEXT_LINGER */
277
278#if defined(CONFIG_NET_SOCKETS)
280 void *socket_data;
281
283 union {
284 struct k_fifo recv_q;
285 struct k_fifo accept_q;
286 };
287
288 struct {
290 struct k_condvar recv;
291
293 struct k_mutex *lock;
294 } cond;
295#endif /* CONFIG_NET_SOCKETS */
296
297#if defined(CONFIG_NET_OFFLOAD)
299 void *offload_context;
300#endif /* CONFIG_NET_OFFLOAD */
301
302#if defined(CONFIG_NET_SOCKETS_CAN)
303 int can_filter_id;
304#endif /* CONFIG_NET_SOCKETS_CAN */
305
307 struct {
308#if defined(CONFIG_NET_CONTEXT_PRIORITY)
310 uint8_t priority;
311#endif
312#if defined(CONFIG_NET_CONTEXT_TXTIME)
314 bool txtime;
315#endif
316#if defined(CONFIG_SOCKS)
318 struct {
319 struct net_sockaddr addr;
320 net_socklen_t addrlen;
321 } proxy;
322#endif
323#if defined(CONFIG_NET_CONTEXT_CLAMP_PORT_RANGE)
335 uint32_t port_range;
336#endif
337#if defined(CONFIG_NET_CONTEXT_RCVTIMEO)
339 k_timeout_t rcvtimeo;
340#endif
341#if defined(CONFIG_NET_CONTEXT_SNDTIMEO)
343 k_timeout_t sndtimeo;
344#endif
345#if defined(CONFIG_NET_CONTEXT_RCVBUF)
347 uint16_t rcvbuf;
348#endif
349#if defined(CONFIG_NET_CONTEXT_SNDBUF)
351 uint16_t sndbuf;
352#endif
353#if defined(CONFIG_NET_CONTEXT_DSCP_ECN)
358 uint8_t dscp_ecn;
359#endif
360#if defined(CONFIG_NET_CONTEXT_REUSEADDR)
362 bool reuseaddr;
363#endif
364#if defined(CONFIG_NET_CONTEXT_REUSEPORT)
366 bool reuseport;
367#endif
368#if defined(CONFIG_NET_IPV4_MAPPING_TO_IPV6)
370 bool ipv6_v6only;
371#endif
372#if defined(CONFIG_NET_CONTEXT_RECV_PKTINFO)
374 bool recv_pktinfo;
375#endif
376#if defined(CONFIG_NET_CONTEXT_RECV_HOPLIMIT)
378 bool recv_hoplimit;
379#endif
380#if defined(CONFIG_NET_IPV6)
385 uint16_t addr_preferences;
386#endif
387#if defined(CONFIG_NET_IPV6) || defined(CONFIG_NET_IPV4)
388 union {
393 uint8_t ipv6_mcast_ifindex;
394
399 uint8_t ipv4_mcast_ifindex;
400 };
402 union {
403 bool ipv6_mcast_loop;
404 bool ipv4_mcast_loop;
405 };
406
408 bool dont_fragment;
409#endif /* CONFIG_NET_IPV6 || CONFIG_NET_IPV4 */
410
411#if defined(CONFIG_NET_CONTEXT_TIMESTAMPING)
413 uint8_t timestamping;
414#endif
415#if defined(CONFIG_NET_CONTEXT_LINGER)
420 struct net_linger linger;
421#endif /* CONFIG_NET_CONTEXT_LINGER */
423
426
429
432
434 union {
435 struct {
438 };
439 struct {
442 };
443 };
444
445#if defined(CONFIG_SOCKS)
447 bool proxy_enabled;
448#endif
449
450};
451
459static inline bool net_context_is_used(struct net_context *context)
460{
461 NET_ASSERT(context);
462
463 return context->flags & NET_CONTEXT_IN_USE;
464}
465
473static inline bool net_context_is_bound_to_iface(struct net_context *context)
474{
475 NET_ASSERT(context);
476
477 return context->flags & NET_CONTEXT_BOUND_TO_IFACE;
478}
479
481
482#define NET_CONTEXT_STATE_SHIFT 1
483#define NET_CONTEXT_STATE_MASK 0x03
484
486
496static inline
497enum net_context_state net_context_get_state(struct net_context *context)
498{
499 NET_ASSERT(context);
500
501 return (enum net_context_state)
502 ((context->flags >> NET_CONTEXT_STATE_SHIFT) &
503 NET_CONTEXT_STATE_MASK);
504}
505
514static inline void net_context_set_state(struct net_context *context,
515 enum net_context_state state)
516{
517 NET_ASSERT(context);
518
519 context->flags &= ~(NET_CONTEXT_STATE_MASK << NET_CONTEXT_STATE_SHIFT);
520 context->flags |= ((state & NET_CONTEXT_STATE_MASK) <<
521 NET_CONTEXT_STATE_SHIFT);
522}
523
535{
536 NET_ASSERT(context);
537
538 return ((context->flags & NET_CONTEXT_FAMILY) >> 3);
539}
540
550static inline void net_context_set_family(struct net_context *context,
551 net_sa_family_t family)
552{
553 uint8_t flag = 0U;
554
555 NET_ASSERT(context);
556
557 if (family == NET_AF_UNSPEC || family == NET_AF_INET || family == NET_AF_INET6 ||
558 family == NET_AF_PACKET || family == NET_AF_CAN) {
559 /* Family is in BIT(4), BIT(5) and BIT(6) */
560 flag = (uint8_t)(family << 3);
561 }
562
563 context->flags |= flag;
564}
565
576static inline
578{
579 NET_ASSERT(context);
580
581 return (enum net_sock_type)((context->flags & NET_CONTEXT_TYPE) >> 6);
582}
583
593static inline void net_context_set_type(struct net_context *context,
594 enum net_sock_type type)
595{
596 uint16_t flag = 0U;
597
598 NET_ASSERT(context);
599
600 if (type == NET_SOCK_DGRAM || type == NET_SOCK_STREAM || type == NET_SOCK_RAW) {
601 /* Type is in BIT(6) and BIT(7)*/
602 flag = (uint16_t)(type << 6);
603 }
604
605 context->flags |= flag;
606}
607
616#if defined(CONFIG_NET_SOCKETS_CAN)
617static inline void net_context_set_can_filter_id(struct net_context *context,
618 int filter_id)
619{
620 NET_ASSERT(context);
621
622 context->can_filter_id = filter_id;
623}
624#else
625static inline void net_context_set_can_filter_id(struct net_context *context,
626 int filter_id)
627{
628 ARG_UNUSED(context);
629 ARG_UNUSED(filter_id);
630}
631#endif
632
642#if defined(CONFIG_NET_SOCKETS_CAN)
643static inline int net_context_get_can_filter_id(struct net_context *context)
644{
645 NET_ASSERT(context);
646
647 return context->can_filter_id;
648}
649#else
650static inline int net_context_get_can_filter_id(struct net_context *context)
651{
652 ARG_UNUSED(context);
653
654 return -1;
655}
656#endif
657
668static inline uint16_t net_context_get_proto(struct net_context *context)
669{
670 return context->proto;
671}
672
683static inline void net_context_set_proto(struct net_context *context,
684 uint16_t proto)
685{
686 context->proto = proto;
687}
688
699static inline
701{
702 NET_ASSERT(context);
703
704 return net_if_get_by_index(context->iface);
705}
706
715static inline void net_context_set_iface(struct net_context *context,
716 struct net_if *iface)
717{
718 NET_ASSERT(iface);
719
720 context->iface = (uint8_t)net_if_get_by_iface(iface);
721}
722
731static inline void net_context_bind_iface(struct net_context *context,
732 struct net_if *iface)
733{
734 NET_ASSERT(iface);
735
737 net_context_set_iface(context, iface);
738}
739
750static inline uint8_t net_context_get_ipv4_ttl(struct net_context *context)
751{
752 return context->ipv4_ttl;
753}
754
764static inline void net_context_set_ipv4_ttl(struct net_context *context,
765 uint8_t ttl)
766{
767 context->ipv4_ttl = ttl;
768}
769
781{
782 return context->ipv4_mcast_ttl;
783}
784
794static inline void net_context_set_ipv4_mcast_ttl(struct net_context *context,
795 uint8_t ttl)
796{
797 context->ipv4_mcast_ttl = ttl;
798}
799
800#if defined(CONFIG_NET_IPV4)
811static inline bool net_context_get_ipv4_mcast_loop(struct net_context *context)
812{
813 return context->options.ipv4_mcast_loop;
814}
815
825static inline void net_context_set_ipv4_mcast_loop(struct net_context *context,
826 bool ipv4_mcast_loop)
827{
828 context->options.ipv4_mcast_loop = ipv4_mcast_loop;
829}
830#endif
831
843{
844 return context->ipv6_hop_limit;
845}
846
855static inline void net_context_set_ipv6_hop_limit(struct net_context *context,
856 uint8_t hop_limit)
857{
858 context->ipv6_hop_limit = hop_limit;
859}
860
872{
873 return context->ipv6_mcast_hop_limit;
874}
875
885static inline void net_context_set_ipv6_mcast_hop_limit(struct net_context *context,
886 uint8_t hop_limit)
887{
888 context->ipv6_mcast_hop_limit = hop_limit;
889}
890
891#if defined(CONFIG_NET_IPV6)
892
903static inline bool net_context_get_ipv6_mcast_loop(struct net_context *context)
904{
905 return context->options.ipv6_mcast_loop;
906}
907
917static inline void net_context_set_ipv6_mcast_loop(struct net_context *context,
918 bool ipv6_mcast_loop)
919{
920 context->options.ipv6_mcast_loop = ipv6_mcast_loop;
921}
922
923#endif
924
934#if defined(CONFIG_SOCKS)
935static inline void net_context_set_proxy_enabled(struct net_context *context,
936 bool enable)
937{
938 context->proxy_enabled = enable;
939}
940#else
941static inline void net_context_set_proxy_enabled(struct net_context *context,
942 bool enable)
943{
944 ARG_UNUSED(context);
945 ARG_UNUSED(enable);
946}
947#endif
948
959#if defined(CONFIG_SOCKS)
960static inline bool net_context_is_proxy_enabled(struct net_context *context)
961{
962 return context->proxy_enabled;
963}
964#else
965static inline bool net_context_is_proxy_enabled(struct net_context *context)
966{
967 ARG_UNUSED(context);
968 return false;
969}
970#endif
971
990 enum net_sock_type type,
991 uint16_t ip_proto,
992 struct net_context **context);
993
1007int net_context_put(struct net_context *context);
1008
1021int net_context_ref(struct net_context *context);
1022
1036int net_context_unref(struct net_context *context);
1037
1046static inline void net_context_signal_linger(struct net_context *context)
1047{
1048#if defined(CONFIG_NET_CONTEXT_LINGER)
1049 k_sem_give(&context->linger_sem);
1050#else
1051 ARG_UNUSED(context);
1052#endif /* CONFIG_NET_CONTEXT_LINGER */
1053}
1054
1065#if defined(CONFIG_NET_IPV4)
1066int net_context_create_ipv4_new(struct net_context *context,
1067 struct net_pkt *pkt,
1068 const struct net_in_addr *src,
1069 const struct net_in_addr *dst);
1070#else
1071static inline int net_context_create_ipv4_new(struct net_context *context,
1072 struct net_pkt *pkt,
1073 const struct net_in_addr *src,
1074 const struct net_in_addr *dst)
1075{
1076 return -1;
1077}
1078#endif /* CONFIG_NET_IPV4 */
1079
1090#if defined(CONFIG_NET_IPV6)
1091int net_context_create_ipv6_new(struct net_context *context,
1092 struct net_pkt *pkt,
1093 const struct net_in6_addr *src,
1094 const struct net_in6_addr *dst);
1095#else
1096static inline int net_context_create_ipv6_new(struct net_context *context,
1097 struct net_pkt *pkt,
1098 const struct net_in6_addr *src,
1099 const struct net_in6_addr *dst)
1100{
1101 ARG_UNUSED(context);
1102 ARG_UNUSED(pkt);
1103 ARG_UNUSED(src);
1104 ARG_UNUSED(dst);
1105 return -1;
1106}
1107#endif /* CONFIG_NET_IPV6 */
1108
1120int net_context_bind(struct net_context *context,
1121 const struct net_sockaddr *addr,
1122 net_socklen_t addrlen);
1123
1135 int backlog);
1136
1166 const struct net_sockaddr *addr,
1167 net_socklen_t addrlen,
1169 k_timeout_t timeout,
1170 void *user_data);
1171
1199 k_timeout_t timeout,
1200 void *user_data);
1201
1221int net_context_send(struct net_context *context,
1222 const void *buf,
1223 size_t len,
1225 k_timeout_t timeout,
1226 void *user_data);
1227
1250 const void *buf,
1251 size_t len,
1252 const struct net_sockaddr *dst_addr,
1253 net_socklen_t addrlen,
1255 k_timeout_t timeout,
1256 void *user_data);
1257
1279 const struct net_msghdr *msghdr,
1280 int flags,
1282 k_timeout_t timeout,
1283 void *user_data);
1284
1321int net_context_recv(struct net_context *context,
1323 k_timeout_t timeout,
1324 void *user_data);
1325
1347 int32_t delta);
1348
1378
1390 enum net_context_option option,
1391 const void *value, uint32_t len);
1392
1404 enum net_context_option option,
1405 void *value, uint32_t *len);
1406
1414typedef void (*net_context_cb_t)(struct net_context *context, void *user_data);
1415
1424
1445#if defined(CONFIG_NET_CONTEXT_NET_PKT_POOL)
1446static inline void net_context_setup_pools(struct net_context *context,
1448 net_pkt_get_pool_func_t data_pool)
1449{
1450 NET_ASSERT(context);
1451
1452 context->tx_slab = tx_slab;
1453 context->data_pool = data_pool;
1454}
1455#else
1456#define net_context_setup_pools(context, tx_pool, data_pool)
1457#endif
1458
1473 uint16_t local_port, const struct net_sockaddr *local_addr);
1474
1475#ifdef __cplusplus
1476}
1477#endif
1478
1482
1483#endif /* ZEPHYR_INCLUDE_NET_NET_CONTEXT_H_ */
Header file for the Atomic operations API.
long atomic_t
Atomic integer variable.
Definition atomic_types.h:31
#define NET_AF_PACKET
Packet family.
Definition net_ip.h:57
#define NET_AF_CAN
Controller Area Network.
Definition net_ip.h:58
uint32_t net_socklen_t
Length of a socket address.
Definition net_ip.h:172
#define NET_AF_INET6
IP protocol family version 6.
Definition net_ip.h:56
#define NET_AF_UNSPEC
Unspecified address family.
Definition net_ip.h:54
unsigned short int net_sa_family_t
Socket address family type.
Definition net_ip.h:169
net_sock_type
Socket type.
Definition net_ip.h:89
#define NET_AF_INET
IP protocol family version 4.
Definition net_ip.h:55
net_ip_protocol
Protocol numbers from IANA/BSD.
Definition net_ip.h:64
@ NET_SOCK_STREAM
Stream socket type.
Definition net_ip.h:90
@ NET_SOCK_RAW
RAW socket type.
Definition net_ip.h:92
@ NET_SOCK_DGRAM
Datagram socket type.
Definition net_ip.h:91
static void net_context_set_type(struct net_context *context, enum net_sock_type type)
Set context type for this network context.
Definition net_context.h:593
static void net_context_set_ipv6_hop_limit(struct net_context *context, uint8_t hop_limit)
Set IPv6 hop limit value for this context.
Definition net_context.h:855
int net_context_unref(struct net_context *context)
Decrement the reference count to a network context.
static void net_context_set_iface(struct net_context *context, struct net_if *iface)
Set network interface for this context.
Definition net_context.h:715
static void net_context_set_ipv4_ttl(struct net_context *context, uint8_t ttl)
Set IPv4 TTL (time-to-live) value for this context.
Definition net_context.h:764
static void net_context_signal_linger(struct net_context *context)
Signal that the connection backing a context has been closed by the transport, so a close() blocked o...
Definition net_context.h:1046
void(* net_context_connect_cb_t)(struct net_context *context, int status, void *user_data)
Connection callback.
Definition net_context.h:163
int net_context_accept(struct net_context *context, net_tcp_accept_cb_t cb, k_timeout_t timeout, void *user_data)
Accept a network connection attempt.
int net_context_put(struct net_context *context)
Close and unref a network context.
int net_context_bind(struct net_context *context, const struct net_sockaddr *addr, net_socklen_t addrlen)
Assign a socket a local address.
static enum net_sock_type net_context_get_type(struct net_context *context)
Get context type for this network context.
Definition net_context.h:577
static bool net_context_is_bound_to_iface(struct net_context *context)
Is this context bound to a network interface.
Definition net_context.h:473
static void net_context_bind_iface(struct net_context *context, struct net_if *iface)
Bind network interface to this context.
Definition net_context.h:731
static void net_context_set_family(struct net_context *context, net_sa_family_t family)
Set address family for this network context.
Definition net_context.h:550
int net_context_get(net_sa_family_t family, enum net_sock_type type, uint16_t ip_proto, struct net_context **context)
Get network context.
int net_context_listen(struct net_context *context, int backlog)
Mark the context as a listening one.
struct k_mem_slab *(* net_pkt_get_slab_func_t)(void)
Function that is called to get the slab that is used for net_pkt allocations.
Definition net_context.h:178
static uint8_t net_context_get_ipv4_mcast_ttl(struct net_context *context)
Get IPv4 multicast TTL (time-to-live) value for this context.
Definition net_context.h:780
int net_context_set_option(struct net_context *context, enum net_context_option option, const void *value, uint32_t len)
Set an connection option for this context.
static bool net_context_is_used(struct net_context *context)
Is this context used or not.
Definition net_context.h:459
int net_context_ref(struct net_context *context)
Take a reference count to a net_context, preventing destruction.
static net_sa_family_t net_context_get_family(struct net_context *context)
Get address family for this network context.
Definition net_context.h:534
static enum net_context_state net_context_get_state(struct net_context *context)
Get state for this network context.
Definition net_context.h:497
static void net_context_set_can_filter_id(struct net_context *context, int filter_id)
Set CAN filter id for this network context.
Definition net_context.h:625
static bool net_context_is_proxy_enabled(struct net_context *context)
Is socks proxy support enabled or disabled for this context.
Definition net_context.h:965
#define NET_CONTEXT_IN_USE
Is this context used or not.
Definition net_context.h:40
int net_context_recv(struct net_context *context, net_context_recv_cb_t cb, k_timeout_t timeout, void *user_data)
Receive network data from a peer specified by context.
static int net_context_get_can_filter_id(struct net_context *context)
Get CAN filter id for this network context.
Definition net_context.h:650
static uint8_t net_context_get_ipv6_hop_limit(struct net_context *context)
Get IPv6 hop limit value for this context.
Definition net_context.h:842
static uint8_t net_context_get_ipv6_mcast_hop_limit(struct net_context *context)
Get IPv6 multicast hop limit value for this context.
Definition net_context.h:871
static void net_context_set_proxy_enabled(struct net_context *context, bool enable)
Enable or disable socks proxy support for this context.
Definition net_context.h:941
static uint8_t net_context_get_ipv4_ttl(struct net_context *context)
Get IPv4 TTL (time-to-live) value for this context.
Definition net_context.h:750
#define NET_CONTEXT_BOUND_TO_IFACE
Context is bound to a specific interface.
Definition net_context.h:71
void(* net_context_cb_t)(struct net_context *context, void *user_data)
Callback used while iterating over network contexts.
Definition net_context.h:1414
static int net_context_create_ipv6_new(struct net_context *context, struct net_pkt *pkt, const struct net_in6_addr *src, const struct net_in6_addr *dst)
Create IPv6 packet in provided net_pkt from context.
Definition net_context.h:1096
static void net_context_set_state(struct net_context *context, enum net_context_state state)
Set state for this network context.
Definition net_context.h:514
net_context_option
Network context options.
Definition net_context.h:1350
static void net_context_set_ipv4_mcast_ttl(struct net_context *context, uint8_t ttl)
Set IPv4 multicast TTL (time-to-live) value for this context.
Definition net_context.h:794
void(* net_context_send_cb_t)(struct net_context *context, int status, void *user_data)
Network data send callback.
Definition net_context.h:116
int net_context_update_recv_wnd(struct net_context *context, int32_t delta)
Update TCP receive window for context.
void net_context_foreach(net_context_cb_t cb, void *user_data)
Go through all the network connections and call callback for each network context.
int net_context_get_option(struct net_context *context, enum net_context_option option, void *value, uint32_t *len)
Get connection option value for this context.
int net_context_send(struct net_context *context, const void *buf, size_t len, net_context_send_cb_t cb, k_timeout_t timeout, void *user_data)
Send data to a peer.
#define NET_CONTEXT_FAMILY
The address family, connection type and IP protocol are stored into a bit field to save space.
Definition net_context.h:62
#define NET_CONTEXT_TYPE
Type of the connection (datagram / stream / raw).
Definition net_context.h:65
bool net_context_port_in_use(enum net_ip_protocol ip_proto, uint16_t local_port, const struct net_sockaddr *local_addr)
Check if a port is in use (bound).
static void net_context_set_proto(struct net_context *context, uint16_t proto)
Set context IP protocol for this network context.
Definition net_context.h:683
#define net_context_setup_pools(context, tx_pool, data_pool)
Set custom network buffer pools for context send operations.
Definition net_context.h:1456
static uint16_t net_context_get_proto(struct net_context *context)
Get context IP protocol for this network context.
Definition net_context.h:668
int net_context_connect(struct net_context *context, const struct net_sockaddr *addr, net_socklen_t addrlen, net_context_connect_cb_t cb, k_timeout_t timeout, void *user_data)
Create a network connection.
struct net_buf_pool *(* net_pkt_get_pool_func_t)(void)
Function that is called to get the pool that is used for net_buf allocations.
Definition net_context.h:191
static int net_context_create_ipv4_new(struct net_context *context, struct net_pkt *pkt, const struct net_in_addr *src, const struct net_in_addr *dst)
Create IPv4 packet in provided net_pkt from context.
Definition net_context.h:1071
void(* net_tcp_accept_cb_t)(struct net_context *new_context, struct net_sockaddr *addr, net_socklen_t addrlen, int status, void *user_data)
Accept callback.
Definition net_context.h:136
static void net_context_set_ipv6_mcast_hop_limit(struct net_context *context, uint8_t hop_limit)
Set IPv6 multicast hop limit value for this context.
Definition net_context.h:885
int net_context_sendmsg(struct net_context *context, const struct net_msghdr *msghdr, int flags, net_context_send_cb_t cb, k_timeout_t timeout, void *user_data)
Send data in iovec to a peer specified in net_msghdr struct.
void(* net_context_recv_cb_t)(struct net_context *context, struct net_pkt *pkt, union net_ip_header *ip_hdr, union net_proto_header *proto_hdr, int status, void *user_data)
Network data receive callback.
Definition net_context.h:95
int net_context_sendto(struct net_context *context, const void *buf, size_t len, const struct net_sockaddr *dst_addr, net_socklen_t addrlen, net_context_send_cb_t cb, k_timeout_t timeout, void *user_data)
Send data to a peer specified by address.
static struct net_if * net_context_get_iface(struct net_context *context)
Get network interface for this context.
Definition net_context.h:700
@ NET_OPT_ADDR_PREFERENCES
IPv6 address preference.
Definition net_context.h:1367
@ NET_OPT_MCAST_TTL
IPv4 multicast TTL.
Definition net_context.h:1363
@ NET_OPT_REUSEADDR
Re-use address.
Definition net_context.h:1359
@ NET_OPT_SNDBUF
Send buffer.
Definition net_context.h:1357
@ NET_OPT_IPV4_MCAST_LOOP
IPV4 multicast loop.
Definition net_context.h:1373
@ NET_OPT_RECV_PKTINFO
Receive packet information.
Definition net_context.h:1362
@ NET_OPT_RECV_HOPLIMIT
Receive hop limit information.
Definition net_context.h:1374
@ NET_OPT_LOCAL_PORT_RANGE
Clamp local port range.
Definition net_context.h:1371
@ NET_OPT_PRIORITY
Context priority.
Definition net_context.h:1351
@ NET_OPT_REUSEPORT
Re-use port.
Definition net_context.h:1360
@ NET_OPT_MCAST_HOP_LIMIT
IPv6 multicast hop limit.
Definition net_context.h:1364
@ NET_OPT_RCVTIMEO
Receive timeout.
Definition net_context.h:1354
@ NET_OPT_TXTIME
TX time.
Definition net_context.h:1352
@ NET_OPT_SNDTIMEO
Send timeout.
Definition net_context.h:1355
@ NET_OPT_MCAST_IFINDEX
IPv6 multicast output network interface index.
Definition net_context.h:1369
@ NET_OPT_SOCKS5
SOCKS5.
Definition net_context.h:1353
@ NET_OPT_IPV6_MCAST_LOOP
IPV6 multicast loop.
Definition net_context.h:1372
@ NET_OPT_TTL
IPv4 unicast TTL.
Definition net_context.h:1366
@ NET_OPT_RCVBUF
Receive buffer.
Definition net_context.h:1356
@ NET_OPT_DONT_FRAGMENT
Disable local IP fragmentation.
Definition net_context.h:1375
@ NET_OPT_MTU
IPv4 socket path MTU.
Definition net_context.h:1370
@ NET_OPT_UNICAST_HOP_LIMIT
IPv6 unicast hop limit.
Definition net_context.h:1365
@ NET_OPT_LINGER
Socket linger (SO_LINGER).
Definition net_context.h:1376
@ NET_OPT_DSCP_ECN
DSCP ECN.
Definition net_context.h:1358
@ NET_OPT_TIMESTAMPING
Packet timestamping.
Definition net_context.h:1368
@ NET_OPT_IPV6_V6ONLY
Share IPv4 and IPv6 port space.
Definition net_context.h:1361
int net_if_get_by_iface(struct net_if *iface)
Get interface index according to pointer.
struct net_if * net_if_get_by_index(int index)
Get interface according to index.
void k_sem_give(struct k_sem *sem)
Give a semaphore.
Public kernel APIs.
Public API for network interface.
IPv6 and IPv4 definitions.
Network statistics.
flags
Definition parser.h:97
state
Definition parser_state.h:29
ssize_t recv(int sock, void *buf, size_t max_len, int flags)
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__INT32_TYPE__ int32_t
Definition stdint.h:74
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
__UINT16_TYPE__ uint16_t
Definition stdint.h:89
__INT8_TYPE__ int8_t
Definition stdint.h:72
Kernel condition variable structure.
Definition kernel.h:3597
Kernel FIFO structure.
Definition kernel.h:2934
Kernel mutex structure.
Definition kernel.h:3476
Semaphore structure.
Definition kernel.h:3702
Kernel timeout type.
Definition clock.h:65
Network buffer pool representation.
Definition net_buf.h:1151
Note that we do not store the actual source IP address in the context because the address is already ...
Definition net_context.h:203
atomic_t refcount
Reference count.
Definition net_context.h:214
struct net_sockaddr remote
Remote endpoint address.
Definition net_context.h:228
void * user_data
User data associated with a context.
Definition net_context.h:210
void * fifo_reserved
First member of the structure to allow to put contexts into a FIFO.
Definition net_context.h:206
uint16_t flags
Flags for the context.
Definition net_context.h:428
uint8_t ipv4_mcast_ttl
IPv4 multicast TTL.
Definition net_context.h:441
net_context_send_cb_t send_cb
Send callback to be called when the packet has been sent successfully.
Definition net_context.h:241
struct k_mutex lock
Internal lock for protecting this context from multiple access.
Definition net_context.h:218
struct net_sockaddr_ptr local
Local endpoint address.
Definition net_context.h:223
uint8_t ipv4_ttl
IPv4 TTL.
Definition net_context.h:440
uint8_t ipv6_mcast_hop_limit
IPv6 multicast hop limit.
Definition net_context.h:437
net_context_connect_cb_t connect_cb
Connect callback to be called when a connection has been established.
Definition net_context.h:246
struct net_conn_handle * conn_handler
Connection handle.
Definition net_context.h:231
uint16_t proto
Protocol (UDP, TCP or IEEE 802.3 protocol value).
Definition net_context.h:425
int8_t iface
Network interface assigned to this context.
Definition net_context.h:431
void * tcp
TCP connection information.
Definition net_context.h:260
struct net_context::@301222043044136136127251054270033130365030331345 options
Option values.
net_context_recv_cb_t recv_cb
Receive callback to be called when desired packet has been received.
Definition net_context.h:236
uint8_t ipv6_hop_limit
IPv6 hop limit.
Definition net_context.h:436
Network Interface structure.
Definition net_if.h:733
IPv6 address struct.
Definition net_ip.h:144
IPv4 address struct.
Definition net_ip.h:156
Message struct.
Definition net_ip.h:295
Network packet.
Definition net_pkt.h:119
Generic sockaddr struct.
Definition net_ip.h:455