Add options for esp_http_client and esp_websocket_client to support keepalive

* Original commit: espressif/esp-idf@b53e46a68e
This commit is contained in:
Shubham Kulkarni
2021-01-11 16:24:48 +05:30
committed by gabsuren
parent d1dd6ece38
commit 8a6c320a29
2 changed files with 17 additions and 0 deletions

View File

@ -95,6 +95,10 @@ typedef struct {
bool disable_pingpong_discon; /*!< Disable auto-disconnect due to no PONG received within pingpong_timeout_sec */
bool use_global_ca_store; /*!< Use a global ca_store for all the connections in which this bool is set. */
bool skip_cert_common_name_check;/*!< Skip any validation of server certificate CN field */
bool keep_alive_enable; /*!< Enable keep-alive timeout */
int keep_alive_idle; /*!< Keep-alive idle time. Default is 5 (second) */
int keep_alive_interval; /*!< Keep-alive interval time. Default is 5 (second) */
int keep_alive_count; /*!< Keep-alive packet retry send count. Default is 3 counts */
} esp_websocket_client_config_t;
/**