-
-
Notifications
You must be signed in to change notification settings - Fork 169
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
abstract sockets #4098
Comments
Implemented in the commit above: Example usage:
Attach with:
Only one item left: automatically create abstract sockets with the display name when |
* create abstract sockets automatically, * try to connect to them if we find one
Good enough for this release. xpra start --start=xterm :10 $ lsof -U | grep "@" | grep py
python3.1 968201 antoine 15u unix 0x00000000f524a112 0t0 5712893 @xpra/10 type=STREAM (LISTEN) The client will transparently try to use the abstract socket if it finds it: xpra attach :10 Or exclusively if we request it more explicitly: xpra attach @10
I'm not 100% sure that overloading the Line 36 in 62b305e
This ensures that other users on the same system can't use abstract sockets to bypass the access restrictions normally enforced by the file permissions of regular unix domain sockets. |
Trivial to add, since I'm in the process of cleaning up the code in
xpra.net
Somewhat also inspired by algorythmic/turbovnc@1028467
The text was updated successfully, but these errors were encountered: