aboutsummaryrefslogtreecommitdiff
path: root/src/server.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2024-07-23 23:28:37 +0100
committerGravatar Sadie Powell2024-07-24 00:03:27 +0100
commit4175ba783359b38965c97d418f540fa992c9924e (patch)
treec61573e00ad5ea8db143bbba53f3e09482c78779 /src/server.cpp
parentFix shadowing messages in pgsql and regex_pcre2. (diff)
Add SendMetadata methods to Server.
Diffstat (limited to 'src/server.cpp')
-rw-r--r--src/server.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/server.cpp b/src/server.cpp
index 805fc9c16..2d469bcd5 100644
--- a/src/server.cpp
+++ b/src/server.cpp
@@ -161,3 +161,13 @@ const std::string& Server::GetPublicName() const
return ServerInstance->Config->HideServer;
return GetName();
}
+
+void Server::SendMetadata(const std::string& key, const std::string& data) const
+{
+ // Do nothing for the local server.
+}
+
+void Server::SendMetadata(const Extensible* ext, const std::string& key, const std::string& data) const
+{
+ // Do nothing for the local server.
+}