X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fprotocol.h;h=8579f03aacdfc74beafd669911912403ef194bfa;hb=78c14ffcc5429f4855e2f3a6c822a1d37f9f591a;hp=65369e781ea48fb815f9daaf507bdc1d2fb2ccc1;hpb=e48c7e038abe2954ecec30f465c811f017793332;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/protocol.h b/include/protocol.h index 65369e781..8579f03aa 100644 --- a/include/protocol.h +++ b/include/protocol.h @@ -14,10 +14,26 @@ #ifndef __PROTOCOL_H__ #define __PROTOCOL_H__ +#include "hashcomp.h" + class InspIRCd; +class User; typedef std::deque 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 ProtoServerList; + class ProtocolInterface : public Extensible { protected: @@ -27,13 +43,41 @@ class ProtocolInterface : public Extensible virtual ~ProtocolInterface() { } virtual void SendEncapsulatedData(parameterlist &encap) { } + virtual void SendMetaData(void* target, int type, const std::string &key, const std::string &data) { } + 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) { } + + virtual void SendMode(const std::string &target, parameterlist &modedata) { } + + virtual void SendModeStr(const std::string &target, const std::string &modeline) + { + /* Convenience function */ + 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