WindowServer: Port to socket takeover

This commit is contained in:
Sergey Bugaev 2019-11-26 19:30:35 +03:00 committed by Andreas Kling
parent c9e21b2bcc
commit 22a05621d5
Notes: sideshowbarker 2024-07-19 11:03:56 +09:00
3 changed files with 4 additions and 3 deletions

View File

@ -15,6 +15,7 @@ KeepAlive=1
User=anon
[WindowServer]
Socket=/tmp/portal/window
Priority=high
KeepAlive=1
User=anon

View File

@ -14,7 +14,7 @@ class GWindowServerConnection : public IPC::Client::Connection<WSAPI_ServerMessa
C_OBJECT(GWindowServerConnection)
public:
GWindowServerConnection()
: Connection("/tmp/wsportal")
: Connection("/tmp/portal/window")
{}
void handshake() override;

View File

@ -27,8 +27,8 @@ WSEventLoop::WSEventLoop()
m_keyboard_fd = open("/dev/keyboard", O_RDONLY | O_NONBLOCK | O_CLOEXEC);
m_mouse_fd = open("/dev/psaux", O_RDONLY | O_NONBLOCK | O_CLOEXEC);
unlink("/tmp/wsportal");
m_server->listen("/tmp/wsportal");
bool ok = m_server->take_over_from_system_server();
ASSERT(ok);
m_server->on_ready_to_accept = [this] {
auto client_socket = m_server->accept();