mirror of
https://github.com/0xFEEDC0DE64/arduino-esp32.git
synced 2025-10-07 19:30:56 +02:00
Fixes: #4884 * Use HTTP method table from ESP-IDF's nghttp * Parse methods using IDF's HTTP method list * Make example's loops to allow the CPU to switch tasks
10 lines
177 B
C
10 lines
177 B
C
#ifndef _HTTP_Method_H_
|
|
#define _HTTP_Method_H_
|
|
|
|
#include "http_parser.h"
|
|
|
|
typedef enum http_method HTTPMethod;
|
|
#define HTTP_ANY (HTTPMethod)(255)
|
|
|
|
#endif /* _HTTP_Method_H_ */
|