mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-05-28 13:40:37 +08:00
19 lines
452 B
Plaintext
19 lines
452 B
Plaintext
menu "ESP HTTP client"
|
|
|
|
|
|
config ESP_HTTP_CLIENT_ENABLE_HTTPS
|
|
bool "Enable https"
|
|
default y
|
|
help
|
|
This option will enable https protocol by linking mbedtls library and initializing SSL transport
|
|
|
|
config HTTP_BUF_SIZE
|
|
int "Default HTTP Buffer Size (both send and receive)"
|
|
default 512
|
|
range 512 1460
|
|
help
|
|
Set HTTP Buffer Size. The larger buffer size will make send and receive more size packet once.
|
|
|
|
|
|
endmenu
|