]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/protocol.h
Document SendMode.
[user/henk/code/inspircd.git] / include / protocol.h
index 65369e781ea48fb815f9daaf507bdc1d2fb2ccc1..b6568e313aa17e98d96c3f6b10b32af8eada4208 100644 (file)
 #ifndef __PROTOCOL_H__
 #define __PROTOCOL_H__
 
+#include "hashcomp.h"
+
 class InspIRCd;
+class User;
 
 typedef std::deque<std::string> parameterlist;
 
+class ProtoServer
+{
+ public:
+       std::string servername;
+       std::string parentname;
+       std::string gecos;
+       unsigned int usercount;
+       unsigned int opercount;
+       unsigned int latencyms;
+};
+
+typedef std::list<ProtoServer> ProtoServerList;
+
 class ProtocolInterface : public Extensible
 {
  protected:
@@ -26,14 +42,63 @@ 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) { }
-       virtual void SendMode(const std::string &origin, const std::string &target, parameterlist &modedata) { }
-       virtual void SendOperNotice(const std::string &text) { }
+
+       /** 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)
+       {
+               irc::spacesepstream x(modeline);
+               parameterlist n;
+               std::string v;
+               while (x.GetToken(v))
+                       n.push_back(v);
+               SendMode(target, n);
+       }
+
        virtual void SendModeNotice(const std::string &modes, const std::string &text) { }
+
        virtual void SendSNONotice(const std::string &snomask, const std::string &text) { }
+
        virtual void PushToClient(User* target, const std::string &rawline) { }
+
+       virtual void SendChannelPrivmsg(Channel* target, char status, const std::string &text) { }
+
+       virtual void SendChannelNotice(Channel* target, char status, const std::string &text) { }
+
+       virtual void SendUserPrivmsg(User* target, const std::string &text) { }
+
+       virtual void SendUserNotice(User* target, const std::string &text) { }
+
+       virtual void GetServerList(ProtoServerList &sl) { }
+
+       virtual void Introduce(User* u) { }
 };
 
 #endif