Merge branch 'bugfix/tcp_transport_err_propagate_v5.0' into 'release/v5.0'

tcp_transport: Fix error propagation on tcp_read() (v5.0)

See merge request espressif/esp-idf!21203
This commit is contained in:
David Čermák 2022-11-25 15:19:48 +08:00
commit 5f25bd8437

View File

@ -291,6 +291,8 @@ static int tcp_read(esp_transport_handle_t t, char *buffer, int len, int timeout
esp_transport_capture_errno(t, errno);
if (errno == EAGAIN) {
ret = ERR_TCP_TRANSPORT_CONNECTION_TIMEOUT;
} else {
ret = ERR_TCP_TRANSPORT_CONNECTION_FAILED;
}
} else if (ret == 0) {
if (poll > 0) {