2017-11-14 10:16:20 +07:00
|
|
|
menu "ESP HTTP client"
|
|
|
|
|
|
|
|
|
2019-01-25 17:10:53 +01:00
|
|
|
config ESP_HTTP_CLIENT_ENABLE_HTTPS
|
|
|
|
bool "Enable https"
|
|
|
|
default y
|
|
|
|
help
|
2020-08-04 13:27:06 +05:30
|
|
|
This option will enable https protocol by linking esp-tls library and initializing SSL transport
|
2017-11-14 10:16:20 +07:00
|
|
|
|
2019-04-03 19:43:13 +05:30
|
|
|
config ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH
|
|
|
|
bool "Enable HTTP Basic Authentication"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
This option will enable HTTP Basic Authentication. It is disabled by default as Basic
|
|
|
|
auth uses unencrypted encoding, so it introduces a vulnerability when not using TLS
|
|
|
|
|
2021-03-15 10:22:15 +05:30
|
|
|
config ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH
|
|
|
|
bool "Enable HTTP Digest Authentication"
|
2021-10-25 14:18:56 +05:30
|
|
|
default n
|
2021-03-15 10:22:15 +05:30
|
|
|
help
|
|
|
|
This option will enable HTTP Digest Authentication. It is enabled by default, but use of this
|
|
|
|
configuration is not recommended as the password can be derived from the exchange, so it introduces
|
|
|
|
a vulnerability when not using TLS
|
2023-11-19 18:32:00 +01:00
|
|
|
|
|
|
|
config ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT
|
|
|
|
bool "Enable custom transport"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
This option will enable injection of a custom tcp_transport handle, so the http operation
|
|
|
|
will be performed on top of the user defined transport abstraction (if configured)
|
|
|
|
|
2024-05-02 15:27:19 +05:30
|
|
|
config ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT
|
|
|
|
int "Time in millisecond to wait for posting event"
|
|
|
|
default 2000
|
|
|
|
help
|
|
|
|
This config option helps in setting the time in millisecond to wait for event to be posted to the
|
|
|
|
system default event loop. Set it to -1 if you need to set timeout to portMAX_DELAY.
|
2017-11-14 10:16:20 +07:00
|
|
|
endmenu
|