Merge branch 'bugfix/esp_http_server_docs' into 'master'

Fixed syntax error in esp_http_server.rst

See merge request espressif/esp-idf!8170
This commit is contained in:
Mahavir Jain 2020-04-01 17:48:16 +08:00
commit 05d95c0e7e
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ Application Example
* as well be any binary data (needs type casting). * as well be any binary data (needs type casting).
* In case of string data, null termination will be absent, and * In case of string data, null termination will be absent, and
* content length would give length of string */ * content length would give length of string */
char[100] content; char content[100];
/* Truncate if content length larger than the buffer */ /* Truncate if content length larger than the buffer */
size_t recv_size = MIN(req->content_len, sizeof(content)); size_t recv_size = MIN(req->content_len, sizeof(content));

View file

@ -33,7 +33,7 @@ HTTP Server 组件提供了在 ESP32 上运行轻量级 Web 服务器的功能
/* 定义 HTTP POST 请求数据的目标缓存区 /* 定义 HTTP POST 请求数据的目标缓存区
* httpd_req_recv() 只接收 char* 数据,但也可以是任意二进制数据(需要类型转换) * httpd_req_recv() 只接收 char* 数据,但也可以是任意二进制数据(需要类型转换)
* 对于字符串数据null 终止符会被省略content_len 会给出字符串的长度 */ * 对于字符串数据null 终止符会被省略content_len 会给出字符串的长度 */
char[100] content; char content[100];
/* 如果内容长度大于缓冲区则截断 */ /* 如果内容长度大于缓冲区则截断 */
size_t recv_size = MIN(req->content_len, sizeof(content)); size_t recv_size = MIN(req->content_len, sizeof(content));