2018-07-02 09:24:08 -07:00
|
|
|
#ifndef _HTTP_Method_H_
|
|
|
|
#define _HTTP_Method_H_
|
|
|
|
|
2021-03-05 13:40:52 +02:00
|
|
|
#include "http_parser.h"
|
|
|
|
|
|
|
|
typedef enum http_method HTTPMethod;
|
|
|
|
#define HTTP_ANY (HTTPMethod)(255)
|
2018-07-02 09:24:08 -07:00
|
|
|
|
|
|
|
#endif /* _HTTP_Method_H_ */
|