![]() |
EVE 1.0
|
#include <uip-fw.h>
Data Fields | |
struct uip_fw_netif * | next |
uip_ipaddr_t | ipaddr |
uip_ipaddr_t | netmask |
uint8_t(* | output )(struct uip_fw_netif *netif) |
bool(* | quote )(struct uip_fw_netif *netif) |
struct uip_fw_netif* uip_fw_netif::next |
Pointer to the next interface when linked in a list.
Definition at line 54 of file uip-fw.h.
Referenced by uip_fw_init(), uip_fw_output(), and uip_fw_register().
uip_ipaddr_t uip_fw_netif::ipaddr |
The IP address of this interface.
Definition at line 56 of file uip-fw.h.
Referenced by uip_fw_init().
uip_ipaddr_t uip_fw_netif::netmask |
uint8_t(* uip_fw_netif::output) (struct uip_fw_netif *netif) |
A pointer to the function that sends a packet.
Definition at line 58 of file uip-fw.h.
Referenced by uip_fw_output().
bool(* uip_fw_netif::quote) (struct uip_fw_netif *netif) |
A pointer to the function which tells if it is allowed to send a packet
Definition at line 61 of file uip-fw.h.
Referenced by uip_fw_quote().