summaryrefslogtreecommitdiff
path: root/Userland/Services/LookupServer/LookupServer.ipc
diff options
context:
space:
mode:
authorGunnar Beutner <gbeutner@serenityos.org>2021-05-03 15:52:56 +0200
committerAndreas Kling <kling@serenityos.org>2021-05-03 21:14:40 +0200
commit9e22e9ce88d180367394614078c36e336358b24b (patch)
tree8b76cef533de8e4c438c33d65c860202880e4f1d /Userland/Services/LookupServer/LookupServer.ipc
parenteb21aa65d131f6fb382ad80d672e5a7ffb1a21e1 (diff)
downloadserenity-9e22e9ce88d180367394614078c36e336358b24b.zip
Userland: Use snake case names in .ipc files
This updates all .ipc files to have snake case names for IPC methods.
Diffstat (limited to 'Userland/Services/LookupServer/LookupServer.ipc')
-rw-r--r--Userland/Services/LookupServer/LookupServer.ipc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Services/LookupServer/LookupServer.ipc b/Userland/Services/LookupServer/LookupServer.ipc
index a3e88a19c0..de694e6f9f 100644
--- a/Userland/Services/LookupServer/LookupServer.ipc
+++ b/Userland/Services/LookupServer/LookupServer.ipc
@@ -1,5 +1,5 @@
endpoint LookupServer [magic=9001]
{
- LookupName(String name) => (int code, Vector<String> addresses)
- LookupAddress(String address) => (int code, String name)
+ lookup_name(String name) => (int code, Vector<String> addresses)
+ lookup_address(String address) => (int code, String name)
}