1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:38:11 +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:
Andreas Kling 2021-02-01 11:26:41 +01:00
parent a5bbe3280d
commit 1ce03f4f34
29 changed files with 27 additions and 42 deletions

View file

@ -38,8 +38,7 @@ Client::Client()
void Client::handshake()
{
auto response = send_sync<Messages::ProtocolServer::Greet>();
set_my_client_id(response->client_id());
send_sync<Messages::ProtocolServer::Greet>();
}
bool Client::is_supported_protocol(const String& protocol)