X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fprotocol.h;h=8579f03aacdfc74beafd669911912403ef194bfa;hb=e078fae142238765f279b50c309f22a5a0761ce4;hp=9ceb438a1bff27c2eae2c9cd0cb60a6413bead02;hpb=89fc6ca9c66198fe54cce19d59279cd454fc1bd0;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/protocol.h b/include/protocol.h index 9ceb438a1..8579f03aa 100644 --- a/include/protocol.h +++ b/include/protocol.h @@ -17,9 +17,23 @@ #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: @@ -47,8 +61,6 @@ class ProtocolInterface : public Extensible SendMode(target, n); } - virtual void SendOperNotice(const std::string &text) { } - virtual void SendModeNotice(const std::string &modes, const std::string &text) { } virtual void SendSNONotice(const std::string &snomask, const std::string &text) { } @@ -62,6 +74,10 @@ class ProtocolInterface : public Extensible 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