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
commit 1549d393b9
Notes: github-actions[bot] 2024-11-26 10:01:57 +00:00
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);