Merge branch 'feature_support_http_method_report' into 'master'

Support http method REPORT

Closes IDFGH-13210

See merge request espressif/esp-idf!32216
This commit is contained in:
Aditya Patwardhan 2024-07-24 15:33:29 +08:00
commit beda3dc072
2 changed files with 3 additions and 1 deletions

View File

@ -184,7 +184,8 @@ static const char *HTTP_METHOD_MAPPING[] = {
"UNLOCK",
"PROPFIND",
"PROPPATCH",
"MKCOL"
"MKCOL",
"REPORT"
};
static esp_err_t esp_http_client_request_send(esp_http_client_handle_t client, int write_len);

View File

@ -116,6 +116,7 @@ typedef enum {
HTTP_METHOD_PROPFIND, /*!< HTTP PROPFIND Method */
HTTP_METHOD_PROPPATCH, /*!< HTTP PROPPATCH Method */
HTTP_METHOD_MKCOL, /*!< HTTP MKCOL Method */
HTTP_METHOD_REPORT, /*!< HTTP REPORT Method */
HTTP_METHOD_MAX,
} esp_http_client_method_t;