mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-12 03:59:03 -04:00
Show extra debug for burst time
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8802 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
43aaead8a8
commit
7483f170de
@ -31,7 +31,7 @@ TreeServer::TreeServer(SpanningTreeUtilities* Util, InspIRCd* Instance, const st
|
||||
ServerDesc.clear();
|
||||
VersionString.clear();
|
||||
ServerUserCount = ServerOperCount = 0;
|
||||
rtt = 0;
|
||||
StartBurst = rtt = 0;
|
||||
Warned = Hidden = DupError = false;
|
||||
VersionString = ServerInstance->GetVersionString();
|
||||
SetID(id);
|
||||
@ -50,7 +50,7 @@ TreeServer::TreeServer(SpanningTreeUtilities* Util, InspIRCd* Instance, std::str
|
||||
VersionString = ServerInstance->GetVersionString();
|
||||
Route = NULL;
|
||||
Socket = NULL; /* Fix by brain */
|
||||
rtt = 0;
|
||||
StartBurst = rtt = 0;
|
||||
Warned = Hidden = DupError = false;
|
||||
AddHashEntry();
|
||||
SetID(id);
|
||||
@ -68,7 +68,7 @@ TreeServer::TreeServer(SpanningTreeUtilities* Util, InspIRCd* Instance, std::str
|
||||
this->SetNextPingTime(time(NULL) + Utils->PingFreq);
|
||||
this->SetPingFlag();
|
||||
DupError = false;
|
||||
rtt = 0;
|
||||
StartBurst = rtt = 0;
|
||||
/* find the 'route' for this server (e.g. the one directly connected
|
||||
* to the local server, which we can use to reach it)
|
||||
*
|
||||
|
@ -1178,6 +1178,7 @@ bool TreeSocket::ProcessLine(std::string &line)
|
||||
gettimeofday(&t, NULL);
|
||||
long ts = (t.tv_sec * 1000) + (t.tv_usec / 1000);
|
||||
Node->StartBurst = ts;
|
||||
this->Instance->Log(DEBUG, "Started bursting at time %lu", ts);
|
||||
this->DoBurst(Node);
|
||||
}
|
||||
else if (command == "ERROR")
|
||||
@ -1517,8 +1518,8 @@ bool TreeSocket::ProcessLine(std::string &line)
|
||||
gettimeofday(&t, NULL);
|
||||
long ts = (t.tv_sec * 1000) + (t.tv_usec / 1000);
|
||||
unsigned long bursttime = ts - ServerSource->StartBurst;
|
||||
this->Instance->SNO->WriteToSnoMask('l', "Received end of netburst from \2%s\2 (burst time: %ul ms)", sourceserv.c_str(), bursttime);
|
||||
|
||||
this->Instance->SNO->WriteToSnoMask('l', "Received end of netburst from \2%s\2 (burst time: %lu ms)", sourceserv.c_str(), bursttime);
|
||||
this->Instance->Log(DEBUG, "Ended bursting at %lu (ts: %lu, startburst: %lu)", bursttime, ts, ServerSource->StartBurst);
|
||||
Event rmode((char*)sourceserv.c_str(), (Module*)Utils->Creator, "new_server");
|
||||
rmode.Send(Instance);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user