Contiki-NG
Macros

The name of the function that should be called when UDP datagrams arrive. More...

Macros

#define UIP_TCP
 Toggles whether TCP support should be compiled in or not.
 
#define UIP_ACTIVE_OPEN
 Determines if support for opening connections from uIP should be compiled in. More...
 
#define UIP_TCP_CONNS
 The maximum number of simultaneously open TCP connections. More...
 
#define UIP_LISTENPORTS
 The maximum number of simultaneously listening TCP ports. More...
 
#define UIP_URGDATA
 Determines if support for TCP urgent data notification should be compiled in. More...
 
#define UIP_RTO   3
 The initial retransmission timeout counted in timer pulses. More...
 
#define UIP_MAXRTX   8
 The maximum number of times a segment should be retransmitted before the connection should be aborted. More...
 
#define UIP_MAXSYNRTX   5
 The maximum number of times a SYN segment should be retransmitted before a connection request should be deemed to have been unsuccessful. More...
 
#define UIP_TCP_MSS   (UIP_BUFSIZE - UIP_IPTCPH_LEN)
 The TCP maximum segment size. More...
 
#define UIP_RECEIVE_WINDOW
 The size of the advertised receiver's window. More...
 
#define UIP_TIME_WAIT_TIMEOUT   120
 How long a connection should stay in the TIME_WAIT state. More...
 

Detailed Description

The name of the function that should be called when UDP datagrams arrive.

Macro Definition Documentation

◆ UIP_ACTIVE_OPEN

#define UIP_ACTIVE_OPEN

Determines if support for opening connections from uIP should be compiled in.

If the applications that are running on top of uIP for this project do not need to open outgoing TCP connections, this configuration option can be turned off to reduce the code size of uIP.

Definition at line 344 of file uipopt.h.

◆ UIP_LISTENPORTS

#define UIP_LISTENPORTS

The maximum number of simultaneously listening TCP ports.

Each listening TCP port requires 2 bytes of memory.

Definition at line 373 of file uipopt.h.

◆ UIP_MAXRTX

#define UIP_MAXRTX   8

The maximum number of times a segment should be retransmitted before the connection should be aborted.

This should not be changed.

Definition at line 402 of file uipopt.h.

◆ UIP_MAXSYNRTX

#define UIP_MAXSYNRTX   5

The maximum number of times a SYN segment should be retransmitted before a connection request should be deemed to have been unsuccessful.

This should not need to be changed.

Definition at line 411 of file uipopt.h.

◆ UIP_RECEIVE_WINDOW

#define UIP_RECEIVE_WINDOW

The size of the advertised receiver's window.

Should be set low (i.e., to the size of the uip_buf buffer) if the application is slow to process incoming data, or high (32768 bytes) if the application processes data quickly.

Definition at line 438 of file uipopt.h.

◆ UIP_RTO

#define UIP_RTO   3

The initial retransmission timeout counted in timer pulses.

This should not be changed.

Definition at line 394 of file uipopt.h.

◆ UIP_TCP_CONNS

#define UIP_TCP_CONNS

The maximum number of simultaneously open TCP connections.

Since the TCP connections are statically allocated, turning this configuration knob down results in less RAM used. Each TCP connection requires approximately 30 bytes of memory.

Definition at line 359 of file uipopt.h.

◆ UIP_TCP_MSS

#define UIP_TCP_MSS   (UIP_BUFSIZE - UIP_IPTCPH_LEN)

The TCP maximum segment size.

This is should not be to set to more than UIP_BUFSIZE - UIP_IPTCPH_LEN.

Definition at line 425 of file uipopt.h.

◆ UIP_TIME_WAIT_TIMEOUT

#define UIP_TIME_WAIT_TIMEOUT   120

How long a connection should stay in the TIME_WAIT state.

This can be reduced for faster entry into power saving modes.

Definition at line 449 of file uipopt.h.

◆ UIP_URGDATA

#define UIP_URGDATA

Determines if support for TCP urgent data notification should be compiled in.

Urgent data (out-of-band data) is a rarely used TCP feature that very seldom would be required.

Definition at line 387 of file uipopt.h.