Skip to content

Commit

Permalink
Merge branch 'feature_support_http_method_report' into 'master'
Browse files Browse the repository at this point in the history
Support http method REPORT

Closes IDFGH-13210

See merge request espressif/esp-idf!32216
  • Loading branch information
AdityaHPatwardhan committed Jul 24, 2024
2 parents 1a3f549 + 52cd896 commit beda3dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/esp_http_client/esp_http_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
1 change: 1 addition & 0 deletions components/esp_http_client/include/esp_http_client.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit beda3dc

Please sign in to comment.