You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When starting a server with lws_create_vhost, the function _lws_vhost_init_server_af gets stuck in an infinite loop when trying to bind to a not valid IP (e.g. not available) address.
env: lws 4.3-stable, Ubuntu 24.04, kernel 6.11
When starting a server with
lws_create_vhost
, the function_lws_vhost_init_server_af
gets stuck in an infinite loop when trying to bind to a not valid IP (e.g. not available) address.lws_socket_bind
(https://github.com/warmcat/libwebsockets/blob/v4.3.3/lib/roles/http/server/server.c#L274) returns-1
(LWS_ITOSA_NOT_EXIST
) and the initialization is stuck in this busy loop https://github.com/warmcat/libwebsockets/blob/v4.3.3/lib/roles/http/server/server.c#L105-L294.The text was updated successfully, but these errors were encountered: