mbed OS5

Fork of UIPEthernet by Zoltan Hudak

Embed: (wiki syntax)

« Back to documentation index

Configuration options for UIP

Configuration options for UIP

UIP is configured using the per-project configuration file uipopt.h. More...

Files

file  uipopt.h
 

Configuration options for UIP.


General configuration options

void uip_log (char *msg)
 Print out a UIP log message.

typedef void * uip_tcp_appstate_t
 The type of the application state that is to be stored in the uip_conn structure.
typedef void * uip_udp_appstate_t
 The type of the application state that is to be stored in the uip_conn structure.

Detailed Description

UIP is configured using the per-project configuration file uipopt.h.

This file contains all compile-time options for UIP and should be tweaked to match each specific project. The UIP distribution contains a documented example "uipopt.h" that can be copied and modified for each project.

Note:
Most of the configuration options in the uipopt.h should not be changed, but rather the per-project uip-conf.h file.

Typedef Documentation

The type of the application state that is to be stored in the uip_conn structure.

This usually is typedef:ed to a struct holding application state information.

Definition at line 169 of file uip-conf.h.

The type of the application state that is to be stored in the uip_conn structure.

This usually is typedef:ed to a struct holding application state information.

Definition at line 175 of file uip-conf.h.


Function Documentation

void uip_log ( char *  msg )

Print out a UIP log message.

This function must be implemented by the module that uses UIP, and is called by UIP whenever a log message is generated.