]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/protocol.h
Remove unneeded ProtocolInterface::Introduce
[user/henk/code/inspircd.git] / include / protocol.h
index 3d8f86cca879635169d060e366b9bf804984c0b8..fdfb89aab1a125e443d630b1798e49d668a7ac9e 100644 (file)
@@ -2,8 +2,8 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
@@ -19,7 +19,7 @@
 class InspIRCd;
 class User;
 
-typedef std::deque<std::string> parameterlist;
+typedef std::vector<std::string> parameterlist;
 
 class ProtoServer
 {
@@ -56,7 +56,7 @@ class ProtocolInterface : public Extensible
         * @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 SendMetaData(void* target, TargetTypeFlags 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.
@@ -68,7 +68,7 @@ class ProtocolInterface : public Extensible
         * @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) { }
+       virtual void SendMode(const std::string &target, const parameterlist &modedata, const std::vector<TranslateType> &translate) { }
 
        /** Convenience function, string wrapper around the above.
          */
@@ -76,10 +76,14 @@ class ProtocolInterface : public Extensible
        {
                irc::spacesepstream x(modeline);
                parameterlist n;
+               std::vector<TranslateType> types;
                std::string v;
                while (x.GetToken(v))
+               {
                        n.push_back(v);
-               SendMode(target, n);
+                       types.push_back(TR_TEXT);
+               }
+               SendMode(target, n, types);
        }
 
        /** Send a notice to users with a given mode(s).
@@ -131,11 +135,6 @@ class ProtocolInterface : public Extensible
         * XXX: document me properly, this is shit.
         */
        virtual void GetServerList(ProtoServerList &sl) { }
-
-       /** Send information about a user connection to linked servers.
-        * @param u The user to send information about.
-        */
-       virtual void Introduce(User* u) { }
 };
 
 #endif