mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 08:19:52 +03:00
json is always chunked
This commit is contained in:
15
lib/PsychicHttp/src_old/http_status.h
Normal file
15
lib/PsychicHttp/src_old/http_status.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef MICRO_HTTP_STATUS_H
|
||||
#define MICRO_HTTP_STATUS_H
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
bool http_informational(int code);
|
||||
bool http_success(int code);
|
||||
bool http_redirection(int code);
|
||||
bool http_client_error(int code);
|
||||
bool http_server_error(int code);
|
||||
bool http_failure(int code);
|
||||
const char * http_status_group(int code);
|
||||
const char * http_status_reason(int code);
|
||||
|
||||
#endif // MICRO_HTTP_STATUS_H
|
||||
Reference in New Issue
Block a user