uIP 1.0 based webserver for LPC1114 + ENC28J60

Dependencies:   mbed TMP102

Embed: (wiki syntax)

« Back to documentation index

uip_fw_netif Struct Reference

uip_fw_netif Struct Reference
[uIP packet forwarding]

Representation of a uIP network interface. More...

#include <uip-fw.h>

Data Fields

struct uip_fw_netifnext
 Pointer to the next interface when linked in a list.
uip_ipaddr_t ipaddr
 The IP address of this interface.
uip_ipaddr_t netmask
 The netmask of the interface.
uint8_t(* output )(void)
 A pointer to the function that sends a packet.

Detailed Description

Representation of a uIP network interface.

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


Field Documentation

uip_ipaddr_t ipaddr

The IP address of this interface.

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

uip_ipaddr_t netmask

The netmask of the interface.

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

struct uip_fw_netif* next

Pointer to the next interface when linked in a list.

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

uint8_t(* output)(void)

A pointer to the function that sends a packet.

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