summaryrefslogtreecommitdiff
path: root/Userland/Services/LookupServer/LookupServer.ipc
diff options
context:
space:
mode:
authorsin-ack <sin-ack@users.noreply.github.com>2021-04-25 08:04:17 +0200
committerAndreas Kling <kling@serenityos.org>2021-04-25 09:29:49 +0200
commit59218007a3034c7770b7fa5277ce1eae85bb1c07 (patch)
tree58595851a1de3e3921f453a1500e8991c9f1e31a /Userland/Services/LookupServer/LookupServer.ipc
parentf89c60664c001e72128b0142d972f31cb13590d3 (diff)
downloadserenity-59218007a3034c7770b7fa5277ce1eae85bb1c07.zip
IPCCompiler: Use string hashes for IPC endpoint magic
This patch removes the IPC endpoint numbers that needed to be specified in the IPC files. Since the string hash is a (hopefully) collision free number that depends on the name of the endpoint, we now use that instead. :^)
Diffstat (limited to 'Userland/Services/LookupServer/LookupServer.ipc')
-rw-r--r--Userland/Services/LookupServer/LookupServer.ipc2
1 files changed, 1 insertions, 1 deletions
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)