blob: e13407950189d552101a5456c633f0f2a88e9b1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#pragma once
#include <stdlib.h>
#include <stdint.h>
// void ws_server_demo();
//
// /** FreeRTOS task that listens for incoming requests from the esp */
// void ws_server_listen_task();
/**
* @brief +IPD incoming request handler
*
* this function takes chunks of data from the esp8266 and parses +IPD
* commands. when a valid +IPD command is detected, it gets forwarded to
* ws_protocol_parse_req_byte.
*
* @param data pointer to data array
* @param size amount of bytes allowed to be read from `data`
*/
void ws_server_req_incoming(uint8_t* data, size_t size);
// TODO: server req incoming implementation
//
// example +IPD command:
// +IPD,0,15:last-records 5\n
//
// TODO: protocol req response parser
|