diff options
Diffstat (limited to 'Userland/Services/LookupServer')
-rw-r--r-- | Userland/Services/LookupServer/LookupClient.ipc | 2 | ||||
-rw-r--r-- | Userland/Services/LookupServer/LookupServer.ipc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Services/LookupServer/LookupClient.ipc b/Userland/Services/LookupServer/LookupClient.ipc index 6455140d91..567b6fcb82 100644 --- a/Userland/Services/LookupServer/LookupClient.ipc +++ b/Userland/Services/LookupServer/LookupClient.ipc @@ -1,4 +1,4 @@ -endpoint LookupClient = 9002 +endpoint LookupClient { Dummy() =| } diff --git a/Userland/Services/LookupServer/LookupServer.ipc b/Userland/Services/LookupServer/LookupServer.ipc index e23182346a..499e2290a4 100644 --- a/Userland/Services/LookupServer/LookupServer.ipc +++ b/Userland/Services/LookupServer/LookupServer.ipc @@ -1,4 +1,4 @@ -endpoint LookupServer = 9001 +endpoint LookupServer { LookupName(String name) => (int code, Vector<String> addresses) LookupAddress(String address) => (int code, String name) |