mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 14:27:35 +00:00
LibIPC: Stop sending client ID to clients
The client ID is not useful to normal clients anymore, so stop telling everyone what their ID is.
This commit is contained in:
parent
a5bbe3280d
commit
1ce03f4f34
29 changed files with 27 additions and 42 deletions
|
@ -53,7 +53,7 @@ void ClientConnection::die()
|
|||
|
||||
OwnPtr<Messages::ImageDecoderServer::GreetResponse> ClientConnection::handle(const Messages::ImageDecoderServer::Greet&)
|
||||
{
|
||||
return make<Messages::ImageDecoderServer::GreetResponse>(client_id());
|
||||
return make<Messages::ImageDecoderServer::GreetResponse>();
|
||||
}
|
||||
|
||||
OwnPtr<Messages::ImageDecoderServer::DecodeImageResponse> ClientConnection::handle(const Messages::ImageDecoderServer::DecodeImage& message)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
endpoint ImageDecoderServer = 7001
|
||||
{
|
||||
Greet() => (i32 client_id)
|
||||
Greet() => ()
|
||||
|
||||
DecodeImage(Core::AnonymousBuffer data) => (bool is_animated, u32 loop_count, Vector<Gfx::ShareableBitmap> bitmaps, Vector<u32> durations)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue