Representation of a uIP network interface.
#include <uip-fw.h>
Data Fields | |
uip_ipaddr_t | ipaddr |
The IP address of this interface. More... | |
uip_ipaddr_t | netmask |
The netmask of the interface. More... | |
struct uip_fw_netif * | next |
Pointer to the next interface when linked in a list. More... | |
uint8_t(* | output )(void) |
A pointer to the function that sends a packet. More... | |
uip_ipaddr_t uip_fw_netif::ipaddr |
The IP address of this interface.
Referenced by find_netif().
uip_ipaddr_t uip_fw_netif::netmask |
The netmask of the interface.
Referenced by find_netif().
struct uip_fw_netif* uip_fw_netif::next |
Pointer to the next interface when
linked in a list.
Referenced by find_netif(), uip_fw_init(), uip_fw_output(), and uip_fw_register().
uint8_t(* uip_fw_netif::output)(void) |
A pointer to the function that
sends a packet.
Referenced by uip_fw_output(), and uip_over_mesh_send().