LibIPC: Remove socket path from IPC Client connections

We don't need these for Ladybird, and they are the only users of
some LibCore functions we can remove as well.
This commit is contained in:
Andrew Kaster
2024-11-21 12:46:45 -07:00
committed by Andreas Kling
parent 310cdc35f0
commit 1549d393b9
5 changed files with 4 additions and 18 deletions

View File

@@ -29,7 +29,7 @@ struct DecodedImage {
class Client final
: public IPC::ConnectionToServer<ImageDecoderClientEndpoint, ImageDecoderServerEndpoint>
, public ImageDecoderClientEndpoint {
IPC_CLIENT_CONNECTION(Client, "/tmp/session/%sid/portal/image"sv);
C_OBJECT_ABSTRACT(Client);
public:
Client(IPC::Transport);