up connection limits for ws

This commit is contained in:
Christien Rioux 2023-08-22 15:11:40 -04:00
parent a0d90fa09a
commit cb9b19fc9f
2 changed files with 6 additions and 6 deletions

View file

@ -173,14 +173,14 @@ Future<VeilidConfig> getDefaultVeilidConfig(String programName) async {
ws: VeilidConfigWS(
connect: true,
listen: !kIsWeb,
maxConnections: 16,
maxConnections: 32,
listenAddress: '',
path: 'ws',
),
wss: VeilidConfigWSS(
connect: true,
listen: false,
maxConnections: 16,
maxConnections: 32,
listenAddress: '',
path: 'ws',
),