[websocket] disable ipv6 in ws_init if disabled in config

This commit is contained in:
Ali Graham 2019-05-05 22:45:28 +09:30
parent 9fcc3d2c01
commit c7cab8ef6f
1 changed files with 2 additions and 0 deletions

View File

@ -381,6 +381,8 @@ websocket_init(void)
memset(&info, 0, sizeof(info));
info.port = websocket_port;
info.protocols = protocols;
if (!cfg_getbool(cfg_getsec(cfg, "general"), "ipv6"))
info.options |= LWS_SERVER_OPTION_DISABLE_IPV6;
info.gid = -1;
info.uid = -1;