jpillora / chisel

A fast TCP/UDP tunnel over HTTP
MIT License
12.77k stars 1.35k forks source link

[QUESTION] What is the maximum number of clients supported by a server? #433

Closed tom342178 closed 1 year ago

tom342178 commented 1 year ago

I have a use case which is low volume and latency tolerant. I am looking to connect a large number of tunnels from remote devices to a central hub and chisel looks like it might be able to serve my needs.

Are there known limitations in the number of clients supported by the server?

a-urth commented 1 year ago

Considering server implementation my guess would be that only ram and limit for file descriptors (for opened connections) on the machine you running server, would be your limitations.

tom342178 commented 1 year ago

thx