summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibConfig
diff options
context:
space:
mode:
authorItamar <itamar8910@gmail.com>2022-02-25 12:27:37 +0200
committerAndreas Kling <kling@serenityos.org>2022-02-25 22:35:12 +0100
commitd88da82e281e041c24d5c61194e7646926341610 (patch)
treea3ab109b168d5356526b2671788cbfee776495c7 /Userland/Libraries/LibConfig
parent3a71748e5d16a244c21aaf28ca3c4220c47f484e (diff)
downloadserenity-d88da82e281e041c24d5c61194e7646926341610.zip
Userland: Rename IPC::ServerConnection=>IPC::ConnectionToServer
This was done with CLion's automatic rename feature.
Diffstat (limited to 'Userland/Libraries/LibConfig')
-rw-r--r--Userland/Libraries/LibConfig/Client.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Libraries/LibConfig/Client.h b/Userland/Libraries/LibConfig/Client.h
index c24ee043fa..99d45a2fc6 100644
--- a/Userland/Libraries/LibConfig/Client.h
+++ b/Userland/Libraries/LibConfig/Client.h
@@ -11,12 +11,12 @@
#include <LibCore/File.h>
#include <LibCore/Promise.h>
#include <LibCore/StandardPaths.h>
-#include <LibIPC/ServerConnection.h>
+#include <LibIPC/ConnectionToServer.h>
namespace Config {
class Client final
- : public IPC::ServerConnection<ConfigClientEndpoint, ConfigServerEndpoint>
+ : public IPC::ConnectionToServer<ConfigClientEndpoint, ConfigServerEndpoint>
, public ConfigClientEndpoint {
IPC_CLIENT_CONNECTION(Client, "/tmp/portal/config")
@@ -40,7 +40,7 @@ public:
private:
explicit Client(NonnullOwnPtr<Core::Stream::LocalSocket> socket)
- : IPC::ServerConnection<ConfigClientEndpoint, ConfigServerEndpoint>(*this, move(socket))
+ : IPC::ConnectionToServer<ConfigClientEndpoint, ConfigServerEndpoint>(*this, move(socket))
{
}