Home
last modified time | relevance | path

Searched refs:callback (Results 1 – 8 of 8) sorted by relevance

/lib/liblwip/doc/
Drawapi.txt7 * low-level "core" / "callback" or "raw" API.
61 having callback functions being called from within the TCP/IP
80 Program execution is driven by callbacks. Each callback is an ordinary
81 C function that is called from within the TCP/IP code. Every callback
84 the callback functions are called with a program specified argument
92 other callback functions. The "pcb" argument is the current TCP
147 usually be called from the accept callback. This allows lwIP to perform
151 into the accept callback!
157 Specified the callback function that should be called when a new
174 callback function of this pcb (registered with tcp_err, see below)
[all …]
/lib/liblwip/src/include/lwip/
Dapi.h193 netconn_callback callback; member
197 #define API_EVENT(c,e,l) if (c->callback) { \
198 (*c->callback)(c, e, l); \
216 netconn_callback callback);
Dapi_msg.h168 struct netconn* netconn_alloc(enum netconn_type t, netconn_callback callback);
/lib/liblwip/
DUPGRADING21 callback (aside from NULL/closed) after calling tcp_close()
23 * When calling tcp_abort() from a raw API TCP callback function,
DCHANGELOG56 * opt.h, netif.h/.c: added netif remove callback (bug #32397)
73 * tcpip.c/.h: patch #7449 allow tcpip callback from interrupt with static
512 * ppp.c/.h: Fixed bug #27856: PPP: Set netif link- and status-callback
863 * netif.c: Don't call the link-callback from netif_set_up/down() since
878 callback can lead to accessing unallocated memory. As a consequence,
1058 * tcp_in.c: Fixed bug #27215: TCP sent() callback gives leading and
1395 by moving accept callback function pointer to TCP_PCB_COMMON
1509 tcp_recv callback (see rawapi.txt).
1569 applications have to call 'tcp_accepted(pcb)' in their accept callback to
1853 a link callback in the netif struct, and functions to handle it. Be carefull
[all …]
/lib/liblwip/src/api/
Dapi_lib.c68 netconn_new_with_proto_and_callback(enum netconn_type t, u8_t proto, netconn_callback callback) in netconn_new_with_proto_and_callback() argument
73 conn = netconn_alloc(t, callback); in netconn_new_with_proto_and_callback()
Dapi_msg.c446 newconn = netconn_alloc(conn->type, conn->callback);
572 netconn_alloc(enum netconn_type t, netconn_callback callback) argument
628 conn->callback = callback;
Dsockets.c383 LWIP_ASSERT("newconn->callback == event_callback", newconn->callback == event_callback); in lwip_accept()