summaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree/treesocket.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2009-03-10 14:50:10 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2009-03-10 14:50:10 +0000
commit5a5a061c48af830ca90b699993cac079a9311b08 (patch)
treee9b08b8ea269d5cfbd231a243112959ce5e2db8f /src/modules/m_spanningtree/treesocket.h
parentf362a30e8016478c1cb787e9ea6bc83441d9c8d1 (diff)
Quiet bursts for uplinks, suggested by HiroP, thanks!
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11194 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree/treesocket.h')
-rw-r--r--src/modules/m_spanningtree/treesocket.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_spanningtree/treesocket.h b/src/modules/m_spanningtree/treesocket.h
index 510052f31..6619d6ce9 100644
--- a/src/modules/m_spanningtree/treesocket.h
+++ b/src/modules/m_spanningtree/treesocket.h
@@ -220,7 +220,7 @@ class TreeSocket : public BufferedSocket
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, std::deque<std::string> &params);
+ bool ParseUID(const std::string &source, std::deque<std::string> &params, const std::string &up);
/** Send one or more FJOINs for a channel of users.
* If the length of a single line is more than 480-NICKMAX
@@ -275,7 +275,7 @@ class TreeSocket : public BufferedSocket
/** 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, std::deque<std::string> &params);
+ bool OperType(const std::string &prefix, std::deque<std::string> &params, const std::string &up);
/** Because Andy insists that services-compatible servers must
* implement SVSNICK and SVSJOIN, that's exactly what we do :p