Merge pull request #34 from bkram/Bkram/hotfix-3las-localhost

Hotfix: 3las server listen op both ipv6 and ipv4
This commit is contained in:
Marek Farkaš
2024-02-28 09:02:42 +01:00
committed by GitHub
+1 -1
View File
@@ -234,7 +234,7 @@ class StreamServer {
}
Run() {
this.Server = new ws.Server({
"host": "127.0.0.1",
"host": ["127.0.0.1", "::1"],
"port": this.Port,
"clientTracking": true,
"perMessageDeflate": false