extmod/modlwip: Use actual errno in exception for error in listen.

The actual underlying error number raised from the lwIP subsystem when
attempting to listen on a socket is swallowed and replaced with an
out-of-memory error which is confusing.

This commit passes the underlying error message from the lwIP subsystem to
the appropriate OSError exception.
pull/9816/head
Jared Hancock 2022-11-07 11:21:27 -06:00 zatwierdzone przez Damien George
rodzic ecd4d54391
commit a2fd382c34
1 zmienionych plików z 12 dodań i 1 usunięć

Wyświetl plik

@ -931,9 +931,20 @@ STATIC mp_obj_t lwip_socket_listen(size_t n_args, const mp_obj_t *args) {
mp_raise_OSError(MP_EOPNOTSUPP);
}
struct tcp_pcb *new_pcb = tcp_listen_with_backlog(socket->pcb.tcp, (u8_t)backlog);
struct tcp_pcb *new_pcb;
#if LWIP_VERSION_MACRO < 0x02000100
new_pcb = tcp_listen_with_backlog(socket->pcb.tcp, (u8_t)backlog);
#else
err_t error;
new_pcb = tcp_listen_with_backlog_and_err(socket->pcb.tcp, (u8_t)backlog, &error);
#endif
if (new_pcb == NULL) {
#if LWIP_VERSION_MACRO < 0x02000100
mp_raise_OSError(MP_ENOMEM);
#else
mp_raise_OSError(error_lookup_table[-error]);
#endif
}
socket->pcb.tcp = new_pcb;