diff options
author | Andreas Kling <kling@serenityos.org> | 2021-02-01 11:26:41 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-01 11:32:00 +0100 |
commit | 1ce03f4f341efd3a2543572c5a0816b65789b0b0 (patch) | |
tree | 7d26af73beeddd225e0c3e5b756307639566ec5f /Userland/Services/LaunchServer/LaunchServer.ipc | |
parent | a5bbe3280d2a492f861cccb641b1b35b8b667b61 (diff) | |
download | serenity-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/LaunchServer/LaunchServer.ipc')
-rw-r--r-- | Userland/Services/LaunchServer/LaunchServer.ipc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/LaunchServer/LaunchServer.ipc b/Userland/Services/LaunchServer/LaunchServer.ipc index 4f50221f4b..34ac5a6db3 100644 --- a/Userland/Services/LaunchServer/LaunchServer.ipc +++ b/Userland/Services/LaunchServer/LaunchServer.ipc @@ -1,6 +1,6 @@ endpoint LaunchServer = 101 { - Greet() => (i32 client_id) + Greet() => () OpenURL(URL url, String handler_name) => (bool response) GetHandlersForURL(URL url) => (Vector<String> handlers) GetHandlersWithDetailsForURL(URL url) => (Vector<String> handlers_details) |