diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-10-25 12:59:12 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-10-25 12:59:12 +0000 |
commit | 8e735c8f3ab15db211259d5d8436884ab33fea44 (patch) | |
tree | fcfe01850efd755970c95a5af10d1e804ee484fc /include | |
parent | 2be4fff3e371b8add4fa6f471414e1f88418875f (diff) |
Document SendMetaData.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10706 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/protocol.h | 8 |
1 files changed, 7 insertions, 1 deletions
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) { } |