Merge branch 'bugfix/ws_send_abort_v4.0' into 'release/v4.0'

websocket client: the client now aborts the connection if send fails. (v4.0)

See merge request espressif/esp-idf!9171
This commit is contained in:
David Čermák 2020-07-15 16:38:05 +08:00
commit e4501dc0ec

View File

@ -644,6 +644,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;