aboutsummaryrefslogtreecommitdiff
path: root/src/net.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2013-11-15 12:24:34 +0100
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2013-11-15 12:24:34 +0100
commitfabba0e6cc08af2b6ff651c5f16b55ffbee9c45b (patch)
tree3a3e28d39da41d9a4336dda61dc0ebf287eb3e74 /src/net.cpp
parent4fc241235c41fbf7f2592dfee11db5b7b71c17ad (diff)
downloadbitcoin-fabba0e6cc08af2b6ff651c5f16b55ffbee9c45b.tar.xz
orphan spaces cleanup ;-)
Diffstat (limited to 'src/net.cpp')
-rw-r--r--src/net.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/net.cpp b/src/net.cpp
index 954fe5947c..59982b4066 100644
--- a/src/net.cpp
+++ b/src/net.cpp
@@ -626,7 +626,7 @@ void CNode::copyStats(CNodeStats &stats)
X(nSendBytes);
X(nRecvBytes);
stats.fSyncNode = (this == pnodeSync);
-
+
// It is common for nodes with good ping times to suddenly become lagged,
// due to a new block arriving or other large transfer.
// Merely reporting pingtime might fool the caller into thinking the node was still responsive,
@@ -637,11 +637,11 @@ void CNode::copyStats(CNodeStats &stats)
if ((0 != nPingNonceSent) && (0 != nPingUsecStart)) {
nPingUsecWait = GetTimeMicros() - nPingUsecStart;
}
-
+
// Raw ping time is in microseconds, but show it to user as whole seconds (Bitcoin users should be well used to small numbers with many decimal places by now :)
stats.dPingTime = (((double)nPingUsecTime) / 1e6);
stats.dPingWait = (((double)nPingUsecWait) / 1e6);
-
+
// Leave string empty if addrLocal invalid (not filled in yet)
stats.addrLocal = addrLocal.IsValid() ? addrLocal.ToString() : "";
}
@@ -1542,9 +1542,9 @@ void ThreadMessageHandler()
CNode* pnodeTrickle = NULL;
if (!vNodesCopy.empty())
pnodeTrickle = vNodesCopy[GetRand(vNodesCopy.size())];
-
+
bool fSleep = true;
-
+
BOOST_FOREACH(CNode* pnode, vNodesCopy)
{
if (pnode->fDisconnect)
@@ -1557,7 +1557,7 @@ void ThreadMessageHandler()
{
if (!g_signals.ProcessMessages(pnode))
pnode->CloseSocketDisconnect();
-
+
if (pnode->nSendSize < SendBufferSize())
{
if (!pnode->vRecvGetData.empty() || (!pnode->vRecvMsg.empty() && pnode->vRecvMsg[0].complete()))
@@ -1583,7 +1583,7 @@ void ThreadMessageHandler()
BOOST_FOREACH(CNode* pnode, vNodesCopy)
pnode->Release();
}
-
+
if (fSleep)
MilliSleep(100);
}