6#include "http_server.h"
24static void _http_close(
struct altcp_pcb *pcb,
http_request_s *req){
27 altcp_recv(pcb, NULL);
28 altcp_sent(pcb, NULL);
29 altcp_poll(pcb, NULL, 0);
48static err_t _http_send(
struct altcp_pcb *pcb,
http_request_s *req){
58 max_len = altcp_sndbuf(pcb);
59 if (max_len < chunk_len) {
66 if ((altcp_sndbuf(pcb) == 0) || (altcp_sndqueuelen(pcb) >= TCP_SND_QUEUELEN)) {
72 }
while ((err == ERR_MEM) && (chunk_len > 1));
79 _http_close(pcb, req);
97static err_t _http_receive(
void *arg,
struct altcp_pcb *pcb,
struct pbuf *p, err_t err){
101 if(err != ERR_OK || p == NULL || req == NULL){
102 if(p != NULL){ altcp_recved(pcb, p->tot_len); pbuf_free(p); }
103 _http_close(pcb, req);
105 altcp_recved(pcb, p->tot_len);
109 _http_send(pcb, req);
112 _http_close(pcb, req);
129static err_t _http_sent(
void *arg,
struct altcp_pcb *pcb, uint16_t len){
132 _http_send(pcb, req);
146static err_t _http_poll(
void *arg,
struct altcp_pcb *pcb){
151 _http_close(pcb, NULL);
156 _http_close(pcb, req);
160 if (_http_send(pcb, req)) {
177static void _http_error(
void *arg, err_t err){
193static err_t _http_accept(
void *arg,
struct altcp_pcb *pcb, err_t err){
197 if(err != ERR_OK || pcb == NULL){
208 altcp_recv(pcb, _http_receive);
209 altcp_sent(pcb, _http_sent);
210 altcp_poll(pcb, _http_poll, 4);
211 altcp_err(pcb, _http_error);
226 struct altcp_pcb *pcb;
228 pcb = altcp_tcp_new_ip_type(IPADDR_TYPE_ANY);
230 altcp_bind(pcb, IP_ANY_TYPE, server->
port);
232 pcb = altcp_listen(pcb);
236 altcp_setprio(pcb, 1);
237 altcp_arg(pcb, server);
238 altcp_accept(pcb, _http_accept);
263 _http_prepare_pcb(server);
void http_request_free(http_request_s *req)
Safely frees an HTTP request instance.
http_request_s * http_request_new(router_fn router)
Creates a new HTTP request instance.
void(* router_fn)(http_request_s *req)
uint8_t http_request_parse(http_request_s *req, struct pbuf *p)
Extracts and parses HTTP method headers and content from received data and calls the router function ...
uint32_t http_response_get_bytes_left(http_response_s *res)
Returns the amount of bytes left to be processed.
http_server_s * http_server_init(uint16_t port, router_fn router)
Initialises a new HTTP server instance.
HTTP server structure object.