diff options
| author | 2024-07-23 23:28:37 +0100 | |
|---|---|---|
| committer | 2024-07-24 00:03:27 +0100 | |
| commit | 4175ba783359b38965c97d418f540fa992c9924e (patch) | |
| tree | c61573e00ad5ea8db143bbba53f3e09482c78779 /src/server.cpp | |
| parent | Fix shadowing messages in pgsql and regex_pcre2. (diff) | |
Add SendMetadata methods to Server.
Diffstat (limited to 'src/server.cpp')
| -rw-r--r-- | src/server.cpp | 10 |
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. +} |
