From 8e735c8f3ab15db211259d5d8436884ab33fea44 Mon Sep 17 00:00:00 2001 From: w00t Date: Sat, 25 Oct 2008 12:59:12 +0000 Subject: [PATCH] Document SendMetaData. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10706 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/protocol.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/include/protocol.h b/include/protocol.h index da4c96907..f78d52928 100644 --- a/include/protocol.h +++ b/include/protocol.h @@ -42,7 +42,7 @@ class ProtocolInterface : public Extensible ProtocolInterface(InspIRCd* Instance) : ServerInstance(Instance) { } virtual ~ProtocolInterface() { } - /** Generate an ENCAP message. + /** Send an ENCAP message to one or more linked servers. * See the protocol documentation for the purpose of ENCAP. * @param encap This is a list of string parameters, the first of which must be a server ID or glob matching servernames. * The second must be a subcommand. All subsequent parameters are dependant on the subcommand. @@ -50,6 +50,12 @@ class ProtocolInterface : public Extensible */ virtual void SendEncapsulatedData(parameterlist &encap) { } + /** Send metadata for an object to other linked servers. + * @param target The object to send metadata for. + * @param type The type of metadata to send (TYPE_USER, TYPE_CHANNEL, etc) + * @param key The 'key' of the data, e.g. "swhois" for swhois desc on a user + * @param data The string representation of the data + */ virtual void SendMetaData(void* target, int type, const std::string &key, const std::string &data) { } virtual void SendTopic(Channel* channel, std::string &topic) { } -- 2.39.2