summaryrefslogtreecommitdiff
path: root/Userland/Services/NotificationServer
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-02-01 11:26:41 +0100
committerAndreas Kling <kling@serenityos.org>2021-02-01 11:32:00 +0100
commit1ce03f4f341efd3a2543572c5a0816b65789b0b0 (patch)
tree7d26af73beeddd225e0c3e5b756307639566ec5f /Userland/Services/NotificationServer
parenta5bbe3280d2a492f861cccb641b1b35b8b667b61 (diff)
downloadserenity-1ce03f4f341efd3a2543572c5a0816b65789b0b0.zip
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.
Diffstat (limited to 'Userland/Services/NotificationServer')
-rw-r--r--Userland/Services/NotificationServer/ClientConnection.cpp2
-rw-r--r--Userland/Services/NotificationServer/NotificationServer.ipc2
2 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Services/NotificationServer/ClientConnection.cpp b/Userland/Services/NotificationServer/ClientConnection.cpp
index 9c6cc8051a..4cf70b6389 100644
--- a/Userland/Services/NotificationServer/ClientConnection.cpp
+++ b/Userland/Services/NotificationServer/ClientConnection.cpp
@@ -50,7 +50,7 @@ void ClientConnection::die()
OwnPtr<Messages::NotificationServer::GreetResponse> ClientConnection::handle(const Messages::NotificationServer::Greet&)
{
- return make<Messages::NotificationServer::GreetResponse>(client_id());
+ return make<Messages::NotificationServer::GreetResponse>();
}
OwnPtr<Messages::NotificationServer::ShowNotificationResponse> ClientConnection::handle(const Messages::NotificationServer::ShowNotification& message)
diff --git a/Userland/Services/NotificationServer/NotificationServer.ipc b/Userland/Services/NotificationServer/NotificationServer.ipc
index e342ebf2d3..a4f7e64a6b 100644
--- a/Userland/Services/NotificationServer/NotificationServer.ipc
+++ b/Userland/Services/NotificationServer/NotificationServer.ipc
@@ -1,7 +1,7 @@
endpoint NotificationServer = 95
{
// Basic protocol
- Greet() => (i32 client_id)
+ Greet() => ()
ShowNotification([UTF8] String text, [UTF8] String title, Gfx::ShareableBitmap icon) => ()
}