Browse Source

esp32/modsocket: Convert EADDRINUSE error code from lwip return value.

pull/5638/head
Damien George 5 years ago
parent
commit
5a755ac30a
  1. 4
      ports/esp32/modsocket.c

4
ports/esp32/modsocket.c

@ -155,7 +155,9 @@ void usocket_events_handler(void) {
NORETURN static void exception_from_errno(int _errno) {
// Here we need to convert from lwip errno values to MicroPython's standard ones
if (_errno == EINPROGRESS) {
if (_errno == EADDRINUSE) {
_errno = MP_EADDRINUSE;
} else if (_errno == EINPROGRESS) {
_errno = MP_EINPROGRESS;
}
mp_raise_OSError(_errno);

Loading…
Cancel
Save