-
-
Notifications
You must be signed in to change notification settings - Fork 171
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
per socket options #2424
Comments
r23896 does this for xpra start --start=xterm :10 --bind-tcp=0.0.0.0:10000,auth=file:filename=password.txt,cork=0,nodelay=1 Other things we can use this for:
|
r23904 makes it possible to disable mdns on a per-socket basis, ie: xpra start --no-daemon --bind-tcp=0.0.0.0:10000,mdns=no --bind-tcp=0.0.0.0:10001,mdns=yes SSL wrapping is more difficult because it takes so many arguments, and we're not currently storing them but taking them from the config object directly. |
For client connection strings, see #2794. |
As of r27656, the socket options can also be used to configure socket protocol upgrades:
ie: this allows plain tcp and https / wss, bit not http or ssh upgrades. |
Based on #1160, we can re-use the same generic socket properties to configure more obscure socket settings like TCP_NODELAY (#619) and TCP_CORK (#2130).
The text was updated successfully, but these errors were encountered: