Contiki 2.5
Data Fields
uip_fw_netif Struct Reference

Representation of a uIP network interface. More...

#include <core/net/uip-fw.h>

Data Fields

struct uip_fw_netifnext
 
 Pointer to the next interface when

linked in a list. More...

 
uip_ipaddr_t ipaddr
 The IP address of this interface. More...
 
uip_ipaddr_t netmask
 The netmask of the interface. More...
 
u8_t(* output )(void)
 A pointer to the function that sends a packet. More...
 

Detailed Description

Representation of a uIP network interface.

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

Field Documentation

uip_ipaddr_t uip_fw_netif::ipaddr

The IP address of this interface.

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

Referenced by main().

uip_ipaddr_t uip_fw_netif::netmask

The netmask of the interface.

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

Referenced by main().

struct uip_fw_netif* uip_fw_netif::next

 Pointer to the next interface when

linked in a list.

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

Referenced by uip_fw_init(), uip_fw_output(), and uip_fw_register().

u8_t(* uip_fw_netif::output)(void)

A pointer to the function that sends a packet.

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

Referenced by uip_fw_output().