TCPIP_STACK_EVENT_HANDLER Type
C
typedef void (* TCPIP_STACK_EVENT_HANDLER)(TCPIP_NET_HANDLE hNet, TCPIP_EVENT, const void* fParam);
Description
TCPIP event notification handler pointer.
Pointer to a function that may be called from within an ISR when a TCP/IP event is available.
Preconditions
None.
Parameters
Parameters | Description |
---|---|
hNet | Network handle. |
tcpEvent | ORed mask of events that occurred. |
fParam | User passed parameter. |
Returns
None.
Remarks
This function may be invoked from within an ISR. It should be kepy as short as possible and it should not include blocking or polling code.