Contiki 2.5
Data Fields
uip_udp_conn Struct Reference

Representation of a uIP UDP connection. More...

#include <core/net/uip.h>

Data Fields

uip_ipaddr_t ripaddr
 The IP address of the remote peer. More...
 
u16_t lport
 The local port number in network byte order. More...
 
u16_t rport
 The remote port number in network byte order. More...
 
u8_t ttl
 Default time-to-live. More...
 
uip_udp_appstate_t appstate
 The application state. More...
 

Detailed Description

Representation of a uIP UDP connection.

Examples:
example-program.c.

Definition at line 1349 of file uip.h.

Field Documentation

uip_udp_appstate_t uip_udp_conn::appstate

The application state.

Definition at line 1356 of file uip.h.

Referenced by udp_attach(), and udp_new().

u16_t uip_udp_conn::lport

The local port number in network byte order.

Definition at line 1351 of file uip.h.

Referenced by uip_init(), uip_process(), and uip_udp_new().

uip_ipaddr_t uip_udp_conn::ripaddr

The IP address of the remote peer.

Definition at line 1350 of file uip.h.

Referenced by resolv_getserver(), uip_process(), and uip_udp_new().

u16_t uip_udp_conn::rport

The remote port number in network byte order.

Definition at line 1352 of file uip.h.

Referenced by uip_process(), and uip_udp_new().

u8_t uip_udp_conn::ttl

Default time-to-live.

Definition at line 1353 of file uip.h.

Referenced by uip_process(), and uip_udp_new().