EVE 1.0
uip_fw_netif Struct Reference

#include <uip-fw.h>

Collaboration diagram for uip_fw_netif:

Data Fields

struct uip_fw_netifnext
 
uip_ipaddr_t ipaddr
 
uip_ipaddr_t netmask
 
uint8_t(* output )(struct uip_fw_netif *netif)
 
bool(* quote )(struct uip_fw_netif *netif)
 

Detailed Description

Representation of a uIP network interface.

Definition at line 53 of file uip-fw.h.

Field Documentation

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

The netmask of the interface.

Definition at line 57 of file uip-fw.h.

Referenced by uip_fw_init().

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().