diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2010-01-18 23:49:23 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2010-01-18 23:49:23 +0000 |
commit | dce58b1611e275118d418bfb3b4402bd14d279dd (patch) | |
tree | e0c036dd49d629b7add3f079c17851198270f404 /src/modules/m_spanningtree/treesocket.h | |
parent | 98f2ecb01456dcb9b47bd0c89e88cd49d6d5205d (diff) |
Move lots of spanningtree items to commands
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12296 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree/treesocket.h')
-rw-r--r-- | src/modules/m_spanningtree/treesocket.h | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/src/modules/m_spanningtree/treesocket.h b/src/modules/m_spanningtree/treesocket.h index bc51f3277..c1678ea5e 100644 --- a/src/modules/m_spanningtree/treesocket.h +++ b/src/modules/m_spanningtree/treesocket.h @@ -214,21 +214,9 @@ class TreeSocket : public BufferedSocket */ void Squit(TreeServer* Current, const std::string &reason); - /** FMODE command - server mode with timestamp checks */ - void ForceMode(User* who, parameterlist ¶ms); - - /** FTOPIC command */ - bool ForceTopic(const std::string &source, parameterlist ¶ms); - - /** FJOIN, similar to TS6 SJOIN, but not quite. */ - void ForceJoin(User* who, parameterlist ¶ms); - /* Used on nick collision ... XXX ugly function HACK */ int DoCollision(User *u, time_t remotets, const std::string &remoteident, const std::string &remoteip, const std::string &remoteuid); - /** UID command */ - bool ParseUID(const std::string &source, parameterlist ¶ms); - /** Send one or more FJOINs for a channel of users. * If the length of a single line is more than 480-NICKMAX * in length, it is split over multiple lines. @@ -271,11 +259,6 @@ class TreeSocket : public BufferedSocket bool Stats(const std::string &prefix, parameterlist ¶ms); - /** Because the core won't let users or even SERVERS set +o, - * we use the OPERTYPE command to do this. - */ - bool OperType(const std::string &prefix, parameterlist ¶ms); - /** Remote AWAY */ bool Away(const std::string &prefix, parameterlist ¶ms); @@ -298,18 +281,10 @@ class TreeSocket : public BufferedSocket */ bool LocalPong(const std::string &prefix, parameterlist ¶ms); - /** METADATA - */ - bool MetaData(const std::string &prefix, parameterlist ¶ms); - /** VERSION */ bool ServerVersion(const std::string &prefix, parameterlist ¶ms); - /** CHGHOST - */ - bool ChangeHost(const std::string &prefix, parameterlist ¶ms); - /** ADDLINE */ bool AddLine(const std::string &prefix, parameterlist ¶ms); @@ -318,13 +293,6 @@ class TreeSocket : public BufferedSocket */ bool DelLine(const std::string &prefix, parameterlist ¶ms); - /** CHGNAME - */ - bool ChangeName(const std::string &prefix, parameterlist ¶ms); - - /** FIDENT */ - bool ChangeIdent(const std::string &prefix, parameterlist ¶ms); - /** WHOIS */ bool Whois(const std::string &prefix, parameterlist ¶ms); @@ -341,11 +309,6 @@ class TreeSocket : public BufferedSocket */ bool LocalPing(const std::string &prefix, parameterlist ¶ms); - /** Remove all modes from a channel, including statusmodes (+qaovh etc), simplemodes, parameter modes. - * This does not update the timestamp of the target channel, this must be done seperately. - */ - void RemoveStatus(User* source, parameterlist ¶ms); - /** <- (remote) <- SERVER */ bool RemoteServer(const std::string &prefix, parameterlist ¶ms); |