mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/ws_send_abort' into 'master'
websocket client: the client now aborts the connection if send fails. Closes IDF-1744 See merge request espressif/esp-idf!8891
This commit is contained in:
commit
f74d5d9517
@ -693,6 +693,7 @@ static int esp_websocket_client_send_with_opcode(esp_websocket_client_handle_t c
|
||||
if (wlen <= 0) {
|
||||
ret = wlen;
|
||||
ESP_LOGE(TAG, "Network error: esp_transport_write() returned %d, errno=%d", ret, errno);
|
||||
esp_websocket_client_abort_connection(client);
|
||||
goto unlock_and_return;
|
||||
}
|
||||
current_opcode = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user