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
25typedef struct{
26 struct altcp_pcb *pcb;
27 uint16_t port;
30
31http_server_s *http_server_init(uint16_t port, router_fn router);
32
33
38#endif
void(* router_fn)(http_request_s *req)
Definition: http_request.h:23
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 structure object.
Definition: http_server.h:25
struct altcp_pcb * pcb
Definition: http_server.h:26
uint16_t port
Definition: http_server.h:27
router_fn router
Definition: http_server.h:28