forked from espressif/arduino-esp32
Update IDF, tools and toolchains
This commit is contained in:
@ -85,6 +85,9 @@ typedef struct {
|
||||
char *subprotocol; /*!< Websocket subprotocol */
|
||||
char *user_agent; /*!< Websocket user-agent */
|
||||
char *headers; /*!< Websocket additional headers */
|
||||
int pingpong_timeout_sec; /*!< Period before connection is aborted due to no PONGs received */
|
||||
bool disable_pingpong_discon; /*!< Disable auto-disconnect due to no PONG received within pingpong_timeout_sec */
|
||||
|
||||
} esp_websocket_client_config_t;
|
||||
|
||||
/**
|
||||
@ -185,7 +188,7 @@ int esp_websocket_client_send_bin(esp_websocket_client_handle_t client, const ch
|
||||
int esp_websocket_client_send_text(esp_websocket_client_handle_t client, const char *data, int len, TickType_t timeout);
|
||||
|
||||
/**
|
||||
* @brief Check the WebSocket connection status
|
||||
* @brief Check the WebSocket client connection state
|
||||
*
|
||||
* @param[in] client The client handle
|
||||
*
|
||||
|
Reference in New Issue
Block a user