1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 05:47:34 +00:00

LookupServer: Port to socket takeover

This commit is contained in:
Sergey Bugaev 2019-11-26 19:39:47 +03:00 committed by Andreas Kling
parent 821ed8367b
commit ab98969403
3 changed files with 3 additions and 2 deletions

View file

@ -49,7 +49,7 @@ LookupServer::LookupServer()
const_cast<CLocalSocket&>(*socket).on_ready_to_read = []{};
};
};
bool ok = m_local_server->listen("/tmp/.LookupServer-socket");
bool ok = m_local_server->take_over_from_system_server();
ASSERT(ok);
}