tcpip_msg is only used within LwIP.
 
Symbols
loading...
Files
loading...

tcpip_msg struct

Syntax

struct tcpip_msg {   enum tcpip_msg_type type;   union { #if !LWIP_TCPIP_CORE_LOCKING     struct {       tcpip_callback_fn function;       void* msg;     } api_msg;     struct {       tcpip_api_call_fn function;       struct tcpip_api_call_data *arg;       sys_sem_t *sem;     } api_call; #endif  #if !LWIP_TCPIP_CORE_LOCKING_INPUT     struct {       struct pbuf *p;       struct netif *netif;       netif_input_fn input_fn;     } inp; #endif      struct {       tcpip_callback_fn function;       void *ctx;     } cb; #if LWIP_TCPIP_TIMEOUT && LWIP_TIMERS     struct {       u32_t msecs;       sys_timeout_handler h;       void *arg;     } tmo; #endif    } msg; };

Fields

type

No summary provided. Read more...

msg

No summary provided. Read more...

References

LocationReferrerScopeText
tcpip_priv.h:129
struct tcpip_msg {
memp_std.h:72
LWIP_MEMPOOL(TCPIP_MSG_API, MEMP_NUM_TCPIP_MSG_API, sizeof(struct tcpip_msg), "TCPIP_MSG_API")
memp_std.h:89
LWIP_MEMPOOL(TCPIP_MSG_INPKT,MEMP_NUM_TCPIP_MSG_INPKT, sizeof(struct tcpip_msg), "TCPIP_MSG_INPKT")
tcpip.c:68tcpip_thread_handle_msg()::msgtcpip_thread_handle_msg()
static void tcpip_thread_handle_msg(struct tcpip_msg *msg);
tcpip.c:129tcpip_thread()
struct tcpip_msg *msg;
tcpip.c:156tcpip_thread_handle_msg()
tcpip_thread_handle_msg(struct tcpip_msg *msg)
tcpip.c:250tcpip_inpkt()
struct tcpip_msg *msg;
tcpip.c:254tcpip_inpkt()
msg = (struct tcpip_msg *)memp_malloc(MEMP_TCPIP_MSG_INPKT);
tcpip.c:311tcpip_callback()
struct tcpip_msg *msg;
tcpip.c:315tcpip_callback()
msg = (struct tcpip_msg *)memp_malloc(MEMP_TCPIP_MSG_API);
tcpip.c:347tcpip_try_callback()
struct tcpip_msg *msg;
tcpip.c:351tcpip_try_callback()
msg = (struct tcpip_msg *)memp_malloc(MEMP_TCPIP_MSG_API);
tcpip.c:533tcpip_callbackmsg_new()
struct tcpip_msg *msg = (struct tcpip_msg *)memp_malloc(MEMP_TCPIP_MSG_API);

Type Use

Variables of tcpip_msg type
tcpip_thread()::msg
tcpip_inpkt()::msg
tcpip_callback()::msg
tcpip_try_callback()::msg
tcpip_callbackmsg_new()::msg
all items filtered out
tcpip_msg