cueOS
2.4
cueOS - Universal Show Control OS for ARM
http_server.h
1
10
#ifndef HTTP_SERVER_H_
11
#define HTTP_SERVER_H_
12
13
#include <stdint.h>
14
#include <stdlib.h>
15
#include "altcp.h"
16
#include "http_defs.h"
17
#include "http_request.h"
18
19
25
typedef
struct
{
26
struct
altcp_pcb *
pcb
;
27
uint16_t
port
;
28
router_fn
router
;
29
}
http_server_s
;
30
31
http_server_s
*
http_server_init
(uint16_t port,
router_fn
router);
32
33
38
#endif
router_fn
void(* router_fn)(http_request_s *req)
Definition:
http_request.h:23
http_server_init
http_server_s * http_server_init(uint16_t port, router_fn router)
Initialises a new HTTP server instance.
Definition:
http_server.c:256
http_server_s
HTTP server structure object.
Definition:
http_server.h:25
http_server_s::pcb
struct altcp_pcb * pcb
Definition:
http_server.h:26
http_server_s::port
uint16_t port
Definition:
http_server.h:27
http_server_s::router
router_fn router
Definition:
http_server.h:28
libs
HTTP_server
inc
http_server.h
Generated by
1.9.4