SAMV71 Xplained Ultra Software Package 1.3

hello-world.h File Reference

#include "uipopt.h"
#include "psock.h"

Go to the source code of this file.

Data Structures

struct  uip_tcp_appstate_t

Defines

Appication specific configurations

An uIP application is implemented using a single application function that is called by uIP whenever a TCP/IP event occurs. The name of this function must be registered with uIP at compile time using the UIP_APPCALL definition.

uIP applications can store the application state within the uip_conn structure by specifying the type of the application structure by typedef:ing the type uip_tcp_appstate_t and uip_udp_appstate_t.

The file containing the definitions must be included in the uipopt.h file.

The following example illustrates how this can look.

void httpd_appcall(void);
#define UIP_APPCALL     httpd_appcall

struct httpd_state {
  u8_t state;
  u16_t count;
  char *dataptr;
  char *script;
};
typedef struct httpd_state uip_tcp_appstate_t
#define UIP_APPCALL   hello_world_appcall

Functions

void hello_world_appcall (void)
void hello_world_init (void)

Detailed Description

Header file for an example of how to write uIP applications with protosockets.

Author:
Adam Dunkels <adam@sics.se>

Definition in file hello-world.h.

 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines