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

ParametersDescription
hNetNetwork handle.
tcpEventORed mask of events that occurred.
fParamUser 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.