STM32F769IDiscovery  1.00
uDANTE Audio Networking with STM32F7 DISCO board
Macros | Functions | Variables
httpserver-netconn.c File Reference
#include "lwip/opt.h"
#include "lwip/arch.h"
#include "lwip/api.h"
#include "fs.h"
#include "string.h"
#include <stdio.h>
#include "httpserver-netconn.h"
#include "cmsis_os.h"

Go to the source code of this file.

Macros

#define WEBSERVER_THREAD_PRIO   ( tskIDLE_PRIORITY + 4 )
 

Functions

void http_server_serve (struct netconn *conn)
 serve tcp connection More...
 
void http_server_netconn_init ()
 Initialize the HTTP server (start its thread) More...
 
void DynWebPage (struct netconn *conn)
 Create and send a dynamic Web Page. This page contains the list of running tasks and the number of page hits. More...
 

Variables

u32_t nPageHits = 0
 

Macro Definition Documentation

#define WEBSERVER_THREAD_PRIO   ( tskIDLE_PRIORITY + 4 )

Definition at line 60 of file httpserver-netconn.c.

Function Documentation

void DynWebPage ( struct netconn *  conn)

Create and send a dynamic Web Page. This page contains the list of running tasks and the number of page hits.

Parameters
connpointer on connection structure
Return values
None

Definition at line 307 of file httpserver-netconn.c.

void http_server_netconn_init ( void  )

Initialize the HTTP server (start its thread)

Parameters
none
Return values
None

Definition at line 296 of file httpserver-netconn.c.

void http_server_serve ( struct netconn *  conn)

serve tcp connection

Parameters
connpointer on connection structure
Return values
None

Definition at line 177 of file httpserver-netconn.c.

Variable Documentation

u32_t nPageHits = 0

Definition at line 64 of file httpserver-netconn.c.