LwIP + 0/7 examples
SourceVu will show references to netconn from the following samples and libraries:
Examples
STM32469I_EVAL
Applications
LwIP
STM324x9I_EVAL
Applications
LwIP
STM324xG_EVAL
Applications
LwIP
STM32F429ZI-Nucleo
Applications
LwIP
 
Symbols
loading...
Files
loading...
SummarySyntaxRelatedReferences

Fields

Field
Declared as
Description
type of the netconn (TCP, UDP or RAW).
current state of the netconn.
union { struct ip_pcb *ip; struct tcp_pcb *tcp; struct udp_pcb *udp; struct raw_pcb *raw; }
the lwIP internal protocol control block.
the last asynchronous unreported error this netconn had.
sem that is used to synchronously execute functions in the core context.
mbox where received packets are stored until they are fetched by the netconn application thread (can grow quite big).
mbox where new connections are stored until processed by the application thread.
int
only used for socket layer.
flags holding more netconn-internal state, see NETCONN_FLAG_* defines.
struct api_msg *
TCP: when data passed to netconn_write doesn't fit into the send buffer, this temporarily stores the message. Also used during connect and close.
A callback function that is informed about events for this netconn.

References

from examples