Filter Driver RTND API Reference
Real-time network device (RTND) functions are functions that a TCP/IP Filter driver (eRTOS RTDLL) must export to function with the TCP/IP Stack. All functions must be provided for the TCP/IP Stack to load the filter driver.
This topic provides a brief description of each of the main routines in an TCP/IP Filter driver.
|
Function |
Description |
|---|---|
|
Called for each instance of the driver when the driver should configure the NIC hardware. |
|
| RtndReceiveFilter |
Called when an incoming Ethernet frame is received from the NIC driver. This function will be called once per frame received. |
| RtndReceiveFilterEx | Called when an incoming Ethernet frame is received from the NIC driver. This function will be called once per frame received. It supplies an additional parameter when the filter routine is called. This additional parameter is a pointer to the network interface in question. |
|
Called when an outgoing Ethernet frame is received from the stack. This function will be called once per frame transmitted. |
|
| RtndTransmitFilterEx | Called when an outgoing Ethernet frame is received from the stack. This function will be called once per frame transmitted. It supplies an additional parameter when the filter routine is called. This additional parameter is a pointer to the network interface in question. |