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_context.h
Go to the documentation of this file.
1
7/*
8 * Copyright (c) 2016 Intel Corporation
9 * Copyright (c) 2021 Nordic Semiconductor
10 *
11 * SPDX-License-Identifier: Apache-2.0
12 */
13
14#ifndef ZEPHYR_INCLUDE_NET_NET_CONTEXT_H_
15#define ZEPHYR_INCLUDE_NET_NET_CONTEXT_H_
16
24#include <zephyr/kernel.h>
25#include <zephyr/sys/atomic.h>
26
27#include <zephyr/net/net_ip.h>
28#include <zephyr/net/net_if.h>
30
31#ifdef __cplusplus
32extern "C" {
33#endif
34
36#define NET_CONTEXT_IN_USE BIT(0)
37
47};
48
54#define NET_CONTEXT_FAMILY (BIT(3) | BIT(4) | BIT(5))
55
57#define NET_CONTEXT_TYPE (BIT(6) | BIT(7))
58
60#define NET_CONTEXT_REMOTE_ADDR_SET BIT(8)
61
63#define NET_CONTEXT_ACCEPTING_SOCK BIT(9)
64
66#define NET_CONTEXT_CLOSING_SOCK BIT(10)
67
68/* Context is bound to a specific interface */
69#define NET_CONTEXT_BOUND_TO_IFACE BIT(11)
70
71struct net_context;
72
93typedef void (*net_context_recv_cb_t)(struct net_context *context,
94 struct net_pkt *pkt,
95 union net_ip_header *ip_hdr,
96 union net_proto_header *proto_hdr,
97 int status,
98 void *user_data);
99
114typedef void (*net_context_send_cb_t)(struct net_context *context,
115 int status,
116 void *user_data);
117
134typedef void (*net_tcp_accept_cb_t)(struct net_context *new_context,
135 struct sockaddr *addr,
136 socklen_t addrlen,
137 int status,
138 void *user_data);
139
161typedef void (*net_context_connect_cb_t)(struct net_context *context,
162 int status,
163 void *user_data);
164
165/* The net_pkt_get_slab_func_t is here in order to avoid circular
166 * dependency between net_pkt.h and net_context.h
167 */
176typedef struct k_mem_slab *(*net_pkt_get_slab_func_t)(void);
177
178/* The net_pkt_get_pool_func_t is here in order to avoid circular
179 * dependency between net_pkt.h and net_context.h
180 */
189typedef struct net_buf_pool *(*net_pkt_get_pool_func_t)(void);
190
191struct net_tcp;
192
193struct net_conn_handle;
194
201__net_socket struct net_context {
205
209
213
216 struct k_mutex lock;
217
221 struct sockaddr_ptr local;
222
227
229 struct net_conn_handle *conn_handler;
230
235
240
245
246#if defined(CONFIG_NET_CONTEXT_NET_PKT_POOL)
250
253 net_pkt_get_pool_func_t data_pool;
254#endif /* CONFIG_NET_CONTEXT_NET_PKT_POOL */
255
256#if defined(CONFIG_NET_TCP)
258 void *tcp;
259#endif /* CONFIG_NET_TCP */
260
261#if defined(CONFIG_NET_CONTEXT_SYNC_RECV)
265 struct k_sem recv_data_wait;
266#endif /* CONFIG_NET_CONTEXT_SYNC_RECV */
267
268#if defined(CONFIG_NET_SOCKETS)
270 void *socket_data;
271
273 union {
274 struct k_fifo recv_q;
275 struct k_fifo accept_q;
276 };
277
278 struct {
280 struct k_condvar recv;
281
283 struct k_mutex *lock;
284 } cond;
285#endif /* CONFIG_NET_SOCKETS */
286
287#if defined(CONFIG_NET_OFFLOAD)
289 void *offload_context;
290#endif /* CONFIG_NET_OFFLOAD */
291
292#if defined(CONFIG_NET_SOCKETS_CAN)
293 int can_filter_id;
294#endif /* CONFIG_NET_SOCKETS_CAN */
295
297 struct {
298#if defined(CONFIG_NET_CONTEXT_PRIORITY)
300 uint8_t priority;
301#endif
302#if defined(CONFIG_NET_CONTEXT_TXTIME)
304 bool txtime;
305#endif
306#if defined(CONFIG_SOCKS)
308 struct {
309 struct sockaddr addr;
310 socklen_t addrlen;
311 } proxy;
312#endif
313#if defined(CONFIG_NET_CONTEXT_RCVTIMEO)
315 k_timeout_t rcvtimeo;
316#endif
317#if defined(CONFIG_NET_CONTEXT_SNDTIMEO)
319 k_timeout_t sndtimeo;
320#endif
321#if defined(CONFIG_NET_CONTEXT_RCVBUF)
323 uint16_t rcvbuf;
324#endif
325#if defined(CONFIG_NET_CONTEXT_SNDBUF)
327 uint16_t sndbuf;
328#endif
329#if defined(CONFIG_NET_CONTEXT_DSCP_ECN)
334 uint8_t dscp_ecn;
335#endif
336#if defined(CONFIG_NET_CONTEXT_REUSEADDR)
338 bool reuseaddr;
339#endif
340#if defined(CONFIG_NET_CONTEXT_REUSEPORT)
342 bool reuseport;
343#endif
344#if defined(CONFIG_NET_IPV4_MAPPING_TO_IPV6)
346 bool ipv6_v6only;
347#endif
348#if defined(CONFIG_NET_CONTEXT_RECV_PKTINFO)
350 bool recv_pktinfo;
351#endif
353
356
359
362
364 union {
365 struct {
368 };
369 struct {
372 };
373 };
374
375#if defined(CONFIG_SOCKS)
377 bool proxy_enabled;
378#endif
379
380};
381
389static inline bool net_context_is_used(struct net_context *context)
390{
391 NET_ASSERT(context);
392
393 return context->flags & NET_CONTEXT_IN_USE;
394}
395
403static inline bool net_context_is_bound_to_iface(struct net_context *context)
404{
405 NET_ASSERT(context);
406
407 return context->flags & NET_CONTEXT_BOUND_TO_IFACE;
408}
409
417static inline bool net_context_is_accepting(struct net_context *context)
418{
419 NET_ASSERT(context);
420
421 return context->flags & NET_CONTEXT_ACCEPTING_SOCK;
422}
423
430static inline void net_context_set_accepting(struct net_context *context,
431 bool accepting)
432{
433 NET_ASSERT(context);
434
435 if (accepting) {
437 } else {
438 context->flags &= ~NET_CONTEXT_ACCEPTING_SOCK;
439 }
440}
441
449static inline bool net_context_is_closing(struct net_context *context)
450{
451 NET_ASSERT(context);
452
453 return context->flags & NET_CONTEXT_CLOSING_SOCK;
454}
455
462static inline void net_context_set_closing(struct net_context *context,
463 bool closing)
464{
465 NET_ASSERT(context);
466
467 if (closing) {
469 } else {
470 context->flags &= ~NET_CONTEXT_CLOSING_SOCK;
471 }
472}
473
474#define NET_CONTEXT_STATE_SHIFT 1
475#define NET_CONTEXT_STATE_MASK 0x03
476
486static inline
488{
489 NET_ASSERT(context);
490
491 return (enum net_context_state)
492 ((context->flags >> NET_CONTEXT_STATE_SHIFT) &
494}
495
504static inline void net_context_set_state(struct net_context *context,
506{
507 NET_ASSERT(context);
508
510 context->flags |= ((state & NET_CONTEXT_STATE_MASK) <<
512}
513
524static inline sa_family_t net_context_get_family(struct net_context *context)
525{
526 NET_ASSERT(context);
527
528 return ((context->flags & NET_CONTEXT_FAMILY) >> 3);
529}
530
540static inline void net_context_set_family(struct net_context *context,
541 sa_family_t family)
542{
543 uint8_t flag = 0U;
544
545 NET_ASSERT(context);
546
547 if (family == AF_UNSPEC || family == AF_INET || family == AF_INET6 ||
548 family == AF_PACKET || family == AF_CAN) {
549 /* Family is in BIT(4), BIT(5) and BIT(6) */
550 flag = family << 3;
551 }
552
553 context->flags |= flag;
554}
555
566static inline
568{
569 NET_ASSERT(context);
570
571 return (enum net_sock_type)((context->flags & NET_CONTEXT_TYPE) >> 6);
572}
573
583static inline void net_context_set_type(struct net_context *context,
584 enum net_sock_type type)
585{
586 uint16_t flag = 0U;
587
588 NET_ASSERT(context);
589
590 if (type == SOCK_DGRAM || type == SOCK_STREAM || type == SOCK_RAW) {
591 /* Type is in BIT(6) and BIT(7)*/
592 flag = type << 6;
593 }
594
595 context->flags |= flag;
596}
597
606#if defined(CONFIG_NET_SOCKETS_CAN)
607static inline void net_context_set_can_filter_id(struct net_context *context,
608 int filter_id)
609{
610 NET_ASSERT(context);
611
612 context->can_filter_id = filter_id;
613}
614#else
615static inline void net_context_set_can_filter_id(struct net_context *context,
616 int filter_id)
617{
618 ARG_UNUSED(context);
619 ARG_UNUSED(filter_id);
620}
621#endif
622
632#if defined(CONFIG_NET_SOCKETS_CAN)
633static inline int net_context_get_can_filter_id(struct net_context *context)
634{
635 NET_ASSERT(context);
636
637 return context->can_filter_id;
638}
639#else
640static inline int net_context_get_can_filter_id(struct net_context *context)
641{
642 ARG_UNUSED(context);
643
644 return -1;
645}
646#endif
647
658static inline uint16_t net_context_get_proto(struct net_context *context)
659{
660 return context->proto;
661}
662
673static inline void net_context_set_proto(struct net_context *context,
674 uint16_t proto)
675{
676 context->proto = proto;
677}
678
689static inline
691{
692 NET_ASSERT(context);
693
694 return net_if_get_by_index(context->iface);
695}
696
705static inline void net_context_set_iface(struct net_context *context,
706 struct net_if *iface)
707{
708 NET_ASSERT(iface);
709
710 context->iface = net_if_get_by_iface(iface);
711}
712
721static inline void net_context_bind_iface(struct net_context *context,
722 struct net_if *iface)
723{
724 NET_ASSERT(iface);
725
727 net_context_set_iface(context, iface);
728}
729
740static inline uint8_t net_context_get_ipv4_ttl(struct net_context *context)
741{
742 return context->ipv4_ttl;
743}
744
754static inline void net_context_set_ipv4_ttl(struct net_context *context,
755 uint8_t ttl)
756{
757 context->ipv4_ttl = ttl;
758}
759
771{
772 return context->ipv4_mcast_ttl;
773}
774
784static inline void net_context_set_ipv4_mcast_ttl(struct net_context *context,
785 uint8_t ttl)
786{
787 context->ipv4_mcast_ttl = ttl;
788}
789
801{
802 return context->ipv6_hop_limit;
803}
804
813static inline void net_context_set_ipv6_hop_limit(struct net_context *context,
814 uint8_t hop_limit)
815{
816 context->ipv6_hop_limit = hop_limit;
817}
818
830{
831 return context->ipv6_mcast_hop_limit;
832}
833
843static inline void net_context_set_ipv6_mcast_hop_limit(struct net_context *context,
844 uint8_t hop_limit)
845{
846 context->ipv6_mcast_hop_limit = hop_limit;
847}
848
858#if defined(CONFIG_SOCKS)
859static inline void net_context_set_proxy_enabled(struct net_context *context,
860 bool enable)
861{
862 context->proxy_enabled = enable;
863}
864#else
865static inline void net_context_set_proxy_enabled(struct net_context *context,
866 bool enable)
867{
868 ARG_UNUSED(context);
869 ARG_UNUSED(enable);
870}
871#endif
872
883#if defined(CONFIG_SOCKS)
884static inline bool net_context_is_proxy_enabled(struct net_context *context)
885{
886 return context->proxy_enabled;
887}
888#else
889static inline bool net_context_is_proxy_enabled(struct net_context *context)
890{
891 return false;
892}
893#endif
894
913 enum net_sock_type type,
914 uint16_t ip_proto,
915 struct net_context **context);
916
930int net_context_put(struct net_context *context);
931
944int net_context_ref(struct net_context *context);
945
959int net_context_unref(struct net_context *context);
960
971#if defined(CONFIG_NET_IPV4)
972int net_context_create_ipv4_new(struct net_context *context,
973 struct net_pkt *pkt,
974 const struct in_addr *src,
975 const struct in_addr *dst);
976#else
977static inline int net_context_create_ipv4_new(struct net_context *context,
978 struct net_pkt *pkt,
979 const struct in_addr *src,
980 const struct in_addr *dst)
981{
982 return -1;
983}
984#endif /* CONFIG_NET_IPV4 */
985
996#if defined(CONFIG_NET_IPV6)
997int net_context_create_ipv6_new(struct net_context *context,
998 struct net_pkt *pkt,
999 const struct in6_addr *src,
1000 const struct in6_addr *dst);
1001#else
1002static inline int net_context_create_ipv6_new(struct net_context *context,
1003 struct net_pkt *pkt,
1004 const struct in6_addr *src,
1005 const struct in6_addr *dst)
1006{
1007 return -1;
1008}
1009#endif /* CONFIG_NET_IPV6 */
1010
1022int net_context_bind(struct net_context *context,
1023 const struct sockaddr *addr,
1024 socklen_t addrlen);
1025
1037 int backlog);
1038
1068 const struct sockaddr *addr,
1069 socklen_t addrlen,
1071 k_timeout_t timeout,
1072 void *user_data);
1073
1101 k_timeout_t timeout,
1102 void *user_data);
1103
1123int net_context_send(struct net_context *context,
1124 const void *buf,
1125 size_t len,
1127 k_timeout_t timeout,
1128 void *user_data);
1129
1152 const void *buf,
1153 size_t len,
1154 const struct sockaddr *dst_addr,
1155 socklen_t addrlen,
1157 k_timeout_t timeout,
1158 void *user_data);
1159
1179 const struct msghdr *msghdr,
1180 int flags,
1182 k_timeout_t timeout,
1183 void *user_data);
1184
1221int net_context_recv(struct net_context *context,
1223 k_timeout_t timeout,
1224 void *user_data);
1225
1247 int32_t delta);
1248
1266};
1267
1279 enum net_context_option option,
1280 const void *value, size_t len);
1281
1293 enum net_context_option option,
1294 void *value, size_t *len);
1295
1303typedef void (*net_context_cb_t)(struct net_context *context, void *user_data);
1304
1313
1334#if defined(CONFIG_NET_CONTEXT_NET_PKT_POOL)
1335static inline void net_context_setup_pools(struct net_context *context,
1337 net_pkt_get_pool_func_t data_pool)
1338{
1339 NET_ASSERT(context);
1340
1341 context->tx_slab = tx_slab;
1342 context->data_pool = data_pool;
1343}
1344#else
1345#define net_context_setup_pools(context, tx_pool, data_pool)
1346#endif
1347
1362 uint16_t local_port, const struct sockaddr *local_addr);
1363
1364#ifdef __cplusplus
1365}
1366#endif
1367
1372#endif /* ZEPHYR_INCLUDE_NET_NET_CONTEXT_H_ */
long atomic_t
Definition: atomic_types.h:15
static ssize_t recv(int sock, void *buf, size_t max_len, int flags)
POSIX wrapper for zsock_recv.
Definition: socket.h:888
unsigned short int sa_family_t
Socket address family type.
Definition: net_ip.h:164
#define AF_CAN
Controller Area Network.
Definition: net_ip.h:56
#define AF_INET
IP protocol family version 4.
Definition: net_ip.h:53
#define AF_INET6
IP protocol family version 6.
Definition: net_ip.h:54
#define AF_PACKET
Packet family.
Definition: net_ip.h:55
net_sock_type
Socket type.
Definition: net_ip.h:84
size_t socklen_t
Length of a socket address.
Definition: net_ip.h:168
#define AF_UNSPEC
Unspecified address family.
Definition: net_ip.h:52
net_ip_protocol
Protocol numbers from IANA/BSD.
Definition: net_ip.h:62
@ SOCK_DGRAM
Datagram socket type.
Definition: net_ip.h:86
@ SOCK_RAW
RAW socket type
Definition: net_ip.h:87
@ SOCK_STREAM
Stream socket type
Definition: net_ip.h:85
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:583
void(* net_context_cb_t)(struct net_context *context, void *user_data)
Callback used while iterating over network contexts.
Definition: net_context.h:1303
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:93
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:813
int net_context_unref(struct net_context *context)
Decrement the reference count to a network context.
int net_context_bind(struct net_context *context, const struct sockaddr *addr, socklen_t addrlen)
Assign a socket a local address.
static void net_context_set_iface(struct net_context *context, struct net_if *iface)
Set network interface for this context.
Definition: net_context.h:705
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:754
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.
static enum net_sock_type net_context_get_type(struct net_context *context)
Get context type for this network context.
Definition: net_context.h:567
static bool net_context_is_accepting(struct net_context *context)
Is this context is accepting data now.
Definition: net_context.h:417
static sa_family_t net_context_get_family(struct net_context *context)
Get address family for this network context.
Definition: net_context.h:524
static bool net_context_is_bound_to_iface(struct net_context *context)
Is this context bound to a network interface.
Definition: net_context.h:403
static void net_context_bind_iface(struct net_context *context, struct net_if *iface)
Bind network interface to this context.
Definition: net_context.h:721
void(* net_tcp_accept_cb_t)(struct net_context *new_context, struct sockaddr *addr, socklen_t addrlen, int status, void *user_data)
Accept callback.
Definition: net_context.h:134
int net_context_listen(struct net_context *context, int backlog)
Mark the context as a listening one.
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:770
static bool net_context_is_used(struct net_context *context)
Is this context used or not.
Definition: net_context.h:389
int net_context_sendmsg(struct net_context *context, const struct 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 msghdr struct.
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:176
int net_context_ref(struct net_context *context)
Take a reference count to a net_context, preventing destruction.
void(* net_context_send_cb_t)(struct net_context *context, int status, void *user_data)
Network data send callback.
Definition: net_context.h:114
static enum net_context_state net_context_get_state(struct net_context *context)
Get state for this network context.
Definition: net_context.h:487
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:189
int net_context_connect(struct net_context *context, const struct sockaddr *addr, socklen_t addrlen, net_context_connect_cb_t cb, k_timeout_t timeout, void *user_data)
Create a network connection.
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:615
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:889
#define NET_CONTEXT_IN_USE
Is this context used or not.
Definition: net_context.h:36
static void net_context_set_accepting(struct net_context *context, bool accepting)
Set this context to accept data now.
Definition: net_context.h:430
net_context_state
State of the context (bits 1 & 2 in the flags)
Definition: net_context.h:39
bool net_context_port_in_use(enum net_ip_protocol ip_proto, uint16_t local_port, const struct sockaddr *local_addr)
Check if a port is in use (bound)
static void net_context_set_family(struct net_context *context, sa_family_t family)
Set address family for this network context.
Definition: net_context.h:540
static int net_context_create_ipv6_new(struct net_context *context, struct net_pkt *pkt, const struct in6_addr *src, const struct in6_addr *dst)
Create IPv6 packet in provided net_pkt from context.
Definition: net_context.h:1002
static int net_context_create_ipv4_new(struct net_context *context, struct net_pkt *pkt, const struct in_addr *src, const struct in_addr *dst)
Create IPv4 packet in provided net_pkt from context.
Definition: net_context.h:977
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:640
#define NET_CONTEXT_CLOSING_SOCK
Is the socket closing / closed.
Definition: net_context.h:66
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:800
static void net_context_set_closing(struct net_context *context, bool closing)
Set this context to closing.
Definition: net_context.h:462
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:829
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:865
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:740
#define NET_CONTEXT_BOUND_TO_IFACE
Definition: net_context.h:69
void(* net_context_connect_cb_t)(struct net_context *context, int status, void *user_data)
Connection callback.
Definition: net_context.h:161
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:504
net_context_option
Definition: net_context.h:1249
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:784
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_set_option(struct net_context *context, enum net_context_option option, const void *value, size_t len)
Set an connection option for this context.
#define NET_CONTEXT_STATE_MASK
Definition: net_context.h:475
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.
static bool net_context_is_closing(struct net_context *context)
Is this context closing.
Definition: net_context.h:449
#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:54
#define NET_CONTEXT_TYPE
Type of the connection (datagram / stream / raw)
Definition: net_context.h:57
#define NET_CONTEXT_STATE_SHIFT
Definition: net_context.h:474
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:673
#define net_context_setup_pools(context, tx_pool, data_pool)
Set custom network buffer pools for context send operations.
Definition: net_context.h:1345
static uint16_t net_context_get_proto(struct net_context *context)
Get context IP protocol for this network context.
Definition: net_context.h:658
int net_context_get(sa_family_t family, enum net_sock_type type, uint16_t ip_proto, struct net_context **context)
Get network context.
#define NET_CONTEXT_ACCEPTING_SOCK
Is the socket accepting connections.
Definition: net_context.h:63
int net_context_get_option(struct net_context *context, enum net_context_option option, void *value, size_t *len)
Get connection option value for this context.
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:843
int net_context_sendto(struct net_context *context, const void *buf, size_t len, const struct sockaddr *dst_addr, 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:690
@ NET_CONTEXT_CONNECTED
Definition: net_context.h:45
@ NET_CONTEXT_IDLE
Definition: net_context.h:40
@ NET_CONTEXT_CONNECTING
Definition: net_context.h:43
@ NET_CONTEXT_READY
Definition: net_context.h:44
@ NET_CONTEXT_UNCONNECTED
Definition: net_context.h:41
@ NET_CONTEXT_CONFIGURING
Definition: net_context.h:42
@ NET_CONTEXT_LISTENING
Definition: net_context.h:46
@ NET_OPT_MCAST_TTL
Definition: net_context.h:1262
@ NET_OPT_REUSEADDR
Definition: net_context.h:1258
@ NET_OPT_SNDBUF
Definition: net_context.h:1256
@ NET_OPT_RECV_PKTINFO
Definition: net_context.h:1261
@ NET_OPT_PRIORITY
Definition: net_context.h:1250
@ NET_OPT_REUSEPORT
Definition: net_context.h:1259
@ NET_OPT_MCAST_HOP_LIMIT
Definition: net_context.h:1263
@ NET_OPT_RCVTIMEO
Definition: net_context.h:1253
@ NET_OPT_TXTIME
Definition: net_context.h:1251
@ NET_OPT_SNDTIMEO
Definition: net_context.h:1254
@ NET_OPT_SOCKS5
Definition: net_context.h:1252
@ NET_OPT_TTL
Definition: net_context.h:1265
@ NET_OPT_RCVBUF
Definition: net_context.h:1255
@ NET_OPT_UNICAST_HOP_LIMIT
Definition: net_context.h:1264
@ NET_OPT_DSCP_ECN
Definition: net_context.h:1257
@ NET_OPT_IPV6_V6ONLY
Definition: net_context.h:1260
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.
Public kernel APIs.
Public API for network interface.
IPv6 and IPv4 definitions.
Network statistics.
flags
Definition: parser.h:96
state
Definition: parser_state.h:29
__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
IPv6 address struct.
Definition: net_ip.h:139
IPv4 address struct.
Definition: net_ip.h:151
Definition: kernel.h:3012
Definition: kernel.h:2374
Mutex Structure.
Definition: kernel.h:2900
Kernel timeout type.
Definition: sys_clock.h:65
Definition: net_ip.h:238
Network buffer pool representation.
Definition: buf.h:976
Note that we do not store the actual source IP address in the context because the address is already ...
Definition: net_context.h:201
atomic_t refcount
Reference count.
Definition: net_context.h:212
void * user_data
User data associated with a context.
Definition: net_context.h:208
void * fifo_reserved
First member of the structure to allow to put contexts into a FIFO.
Definition: net_context.h:204
uint16_t flags
Flags for the context.
Definition: net_context.h:358
uint8_t ipv4_mcast_ttl
IPv4 multicast TTL.
Definition: net_context.h:371
net_context_send_cb_t send_cb
Send callback to be called when the packet has been sent successfully.
Definition: net_context.h:239
struct sockaddr remote
Remote endpoint address.
Definition: net_context.h:226
struct k_mutex lock
Internal lock for protecting this context from multiple access.
Definition: net_context.h:216
struct sockaddr_ptr local
Local endpoint address.
Definition: net_context.h:221
struct net_context::@318 options
Option values.
uint8_t ipv4_ttl
IPv4 TTL.
Definition: net_context.h:370
uint8_t ipv6_mcast_hop_limit
IPv6 multicast hop limit.
Definition: net_context.h:367
net_context_connect_cb_t connect_cb
Connect callback to be called when a connection has been established.
Definition: net_context.h:244
struct net_conn_handle * conn_handler
Connection handle.
Definition: net_context.h:229
uint16_t proto
Protocol (UDP, TCP or IEEE 802.3 protocol value)
Definition: net_context.h:355
int8_t iface
Network interface assigned to this context.
Definition: net_context.h:361
void * tcp
TCP connection information.
Definition: net_context.h:258
net_context_recv_cb_t recv_cb
Receive callback to be called when desired packet has been received.
Definition: net_context.h:234
uint8_t ipv6_hop_limit
IPv6 hop limit.
Definition: net_context.h:366
Network Interface structure.
Definition: net_if.h:615
Network packet.
Definition: net_pkt.h:63
Generic sockaddr struct.
Definition: net_ip.h:347