xo-websock: add initializers for missing lws 4.4.1 fields
Some checks failed
CI / smoke-test (push) Failing after 2m31s

in lws_http_mount
This commit is contained in:
Roland Conybeare 2026-06-05 08:23:14 -04:00
commit 02da6e9b60

View file

@ -681,6 +681,12 @@ namespace xo {
.basic_auth_login_file = NULL,
# if ((LWS_LIBRARY_VERSION_MAJOR < 4) || ((LWS_LIBRARY_VERSION_MAJOR == 4) && (LWS_LIBRARY_VERSION_MINOR < 3)))
._unused = { nullptr, nullptr },
# endif
# if (LWS_LIBRARY_VERSION_MAJOR > 4 || ((LWS_LIBRARY_VERSION_MAJOR == 4) && (LWS_LIBRARY_VERSION_MIN
.cgi_chroot_path = NULL,
.cgi_wd = NULL,
.headers = NULL,
.keepalive_timeout = 0,
# endif
};
} /*init_mount_dynamic*/