]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/protocol.h
Document SendMode.
[user/henk/code/inspircd.git] / include / protocol.h
index 87d4ea384bb23c469ece668544276087c7aaaba3..b6568e313aa17e98d96c3f6b10b32af8eada4208 100644 (file)
@@ -26,6 +26,7 @@ class ProtoServer
  public:
        std::string servername;
        std::string parentname;
+       std::string gecos;
        unsigned int usercount;
        unsigned int opercount;
        unsigned int latencyms;
@@ -41,17 +42,38 @@ class ProtocolInterface : public Extensible
        ProtocolInterface(InspIRCd* Instance) : ServerInstance(Instance) { }
        virtual ~ProtocolInterface() { }
 
+       /** 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.
+        * ENCAP (should) be used instead of creating new protocol messages for easier third party application support.
+        */
        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) { }
 
+       /** Send a topic change for a channel
+        * @param channel The channel to change the topic for.
+        * @param topic The new topic to use for the channel.
+        */
        virtual void SendTopic(Channel* channel, std::string &topic) { }
 
+       /** Send mode changes for an object.
+        * @param target The channel name or user to send mode changes for.
+        * @param The mode changes to send.
+        */
        virtual void SendMode(const std::string &target, parameterlist &modedata) { }
 
+       /** Convenience function, string wrapper around the above.
+         */
        virtual void SendModeStr(const std::string &target, const std::string &modeline)
        {
-               /* Convenience function */
                irc::spacesepstream x(modeline);
                parameterlist n;
                std::string v;