diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-28 18:44:49 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-28 18:44:49 +0000 |
commit | ce9b1289c672d3d6b9cadec865754710bc1b80f7 (patch) | |
tree | 376b722a0fe72d86faf079f591c7d31e61369a2c /src/modules/m_spanningtree/treesocket2.cpp | |
parent | 4840d5e77572f42b710501912d59b5dbb6d2c2af (diff) |
PERL PIE FOR ALL: Rename a fuckload of XLineManager's methods
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8399 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree/treesocket2.cpp')
-rw-r--r-- | src/modules/m_spanningtree/treesocket2.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/modules/m_spanningtree/treesocket2.cpp b/src/modules/m_spanningtree/treesocket2.cpp index d8eab8a5e..e1d320051 100644 --- a/src/modules/m_spanningtree/treesocket2.cpp +++ b/src/modules/m_spanningtree/treesocket2.cpp @@ -528,23 +528,23 @@ bool TreeSocket::AddLine(const std::string &prefix, std::deque<std::string> &par switch (*(params[0].c_str())) { case 'Z': - propogate = Instance->XLines->add_zline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str()); + propogate = Instance->XLines->AddZLine(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str()); Instance->XLines->zline_set_creation_time(params[1].c_str(), atoi(params[3].c_str())); break; case 'Q': - propogate = Instance->XLines->add_qline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str()); + propogate = Instance->XLines->AddQLine(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str()); Instance->XLines->qline_set_creation_time(params[1].c_str(), atoi(params[3].c_str())); break; case 'E': - propogate = Instance->XLines->add_eline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str()); + propogate = Instance->XLines->AddELine(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str()); Instance->XLines->eline_set_creation_time(params[1].c_str(), atoi(params[3].c_str())); break; case 'G': - propogate = Instance->XLines->add_gline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str()); + propogate = Instance->XLines->AddGLine(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str()); Instance->XLines->gline_set_creation_time(params[1].c_str(), atoi(params[3].c_str())); break; case 'K': - propogate = Instance->XLines->add_kline(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str()); + propogate = Instance->XLines->AddKLine(atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str()); break; default: /* Just in case... */ @@ -570,7 +570,7 @@ bool TreeSocket::AddLine(const std::string &prefix, std::deque<std::string> &par if (!this->bursting) { - Instance->XLines->apply_lines(); + Instance->XLines->ApplyLines(); } return true; @@ -1340,7 +1340,7 @@ bool TreeSocket::ProcessLine(std::string &line) if (this->bursting) { this->bursting = false; - Instance->XLines->apply_lines(); + Instance->XLines->ApplyLines(); } return this->LocalPing(prefix,params); @@ -1359,7 +1359,7 @@ bool TreeSocket::ProcessLine(std::string &line) if (this->bursting) { this->bursting = false; - Instance->XLines->apply_lines(); + Instance->XLines->ApplyLines(); } return this->LocalPong(prefix,params); @@ -1477,7 +1477,7 @@ bool TreeSocket::ProcessLine(std::string &line) else if (command == "ENDBURST") { this->bursting = false; - Instance->XLines->apply_lines(); + Instance->XLines->ApplyLines(); std::string sourceserv = this->myhost; if (!this->InboundServerName.empty()) sourceserv = this->InboundServerName; |