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_ */
|