Home
last modified time | relevance | path

Searched refs:conn_handler (Results 1 – 4 of 4) sorted by relevance

/Zephyr-latest/subsys/net/ip/
Dnet_context.c656 if (context->conn_handler) { in net_context_unref()
660 net_conn_unregister(context->conn_handler); in net_context_unref()
663 context->conn_handler = NULL; in net_context_unref()
855 if (context->conn_handler) { in net_context_bind()
1183 static inline struct net_context *find_context(void *conn_handler) in find_context() argument
1192 if (contexts[i].conn_handler == conn_handler) { in find_context()
2771 if (context->conn_handler) { in recv_udp()
2773 ret = net_conn_update(context->conn_handler, in recv_udp()
2823 &context->conn_handler); in recv_udp()
2882 if (context->conn_handler) { in recv_raw()
[all …]
Dtcp.c775 if (conn->context->conn_handler) { in tcp_conn_release()
776 net_conn_unregister(conn->context->conn_handler); in tcp_conn_release()
777 conn->context->conn_handler = NULL; in tcp_conn_release()
2490 &context->conn_handler); in tcp_conn_new()
2808 struct net_conn *conn_handler = NULL; in tcp_in() local
3593 conn_handler = (struct net_conn *)conn->context->conn_handler; in tcp_in()
3605 while (conn_handler && atomic_get(&conn->ref_count) > 0 && in tcp_in()
3607 if (net_context_packet_received(conn_handler, recv_pkt, NULL, in tcp_in()
3927 &context->conn_handler); in net_tcp_connect()
4053 net_conn_unregister(context->conn_handler); in net_tcp_accept()
[all …]
/Zephyr-latest/include/zephyr/net/
Dnet_context.h235 struct net_conn_handle *conn_handler; member
/Zephyr-latest/tests/net/conn_mgr_monitor/src/
Dmain.c190 void conn_handler(struct net_mgmt_event_callback *cb, uint32_t event, struct net_if *iface) in conn_handler() function
250 &conn_callback, conn_handler, in conn_mgr_setup()