aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2012-05-01 22:03:51 +0200
committerPieter Wuille <pieter.wuille@gmail.com>2012-06-23 01:11:38 +0200
commit863e995b79ec388bf292d80f181912d01e20e2e5 (patch)
treec8b732a9d5de07994896058269858060c8c85392
parent54ce3bad64ea4dff64f16c12b287383ad96a875a (diff)
downloadbitcoin-863e995b79ec388bf292d80f181912d01e20e2e5.tar.xz
Debug version messages
-rw-r--r--src/main.cpp2
-rw-r--r--src/net.cpp1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 2d3e35138c..9ca4889be5 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -2419,7 +2419,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
pfrom->fSuccessfullyConnected = true;
- printf("version message: version %d, blocks=%d\n", pfrom->nVersion, pfrom->nStartingHeight);
+ printf("receive version message: version %d, blocks=%d, us=%s, them=%s, peer=%s\n", pfrom->nVersion, pfrom->nStartingHeight, addrMe.ToString().c_str(), addrFrom.ToString().c_str(), pfrom->addr.ToString().c_str());
cPeerBlockCounts.input(pfrom->nStartingHeight);
}
diff --git a/src/net.cpp b/src/net.cpp
index 441d28bb91..77fd334ee4 100644
--- a/src/net.cpp
+++ b/src/net.cpp
@@ -549,6 +549,7 @@ void CNode::PushVersion()
CAddress addrYou = (addr.IsRoutable() && !IsProxy(addr) ? addr : CAddress(CService("0.0.0.0",0)));
CAddress addrMe = GetLocalAddress(&addr);
RAND_bytes((unsigned char*)&nLocalHostNonce, sizeof(nLocalHostNonce));
+ printf("send version message: version %d, blocks=%d, us=%s, them=%s, peer=%s\n", PROTOCOL_VERSION, nBestHeight, addrMe.ToString().c_str(), addrYou.ToString().c_str(), addr.ToString().c_str());
PushMessage("version", PROTOCOL_VERSION, nLocalServices, nTime, addrYou, addrMe,
nLocalHostNonce, FormatSubVersion(CLIENT_NAME, CLIENT_VERSION, std::vector<string>()), nBestHeight);
}