Browse Source

Catch p2p exceptions

pull/1/head
Pieter Wuille 13 years ago
parent
commit
eceeda1eec
  1. 5
      bitcoin.cpp

5
bitcoin.cpp

@ -259,6 +259,7 @@ public: @@ -259,6 +259,7 @@ public:
};
bool TestNode(const CIPPort &cip, int &ban, int &clientV, vector<CAddress>& vAddr) {
try {
CNode node(cip, vAddr);
bool ret = node.Run();
if (!ret) {
@ -269,6 +270,10 @@ bool TestNode(const CIPPort &cip, int &ban, int &clientV, vector<CAddress>& vAdd @@ -269,6 +270,10 @@ bool TestNode(const CIPPort &cip, int &ban, int &clientV, vector<CAddress>& vAdd
clientV = node.GetClientVersion();
// printf("%s: %s!!!\n", cip.ToString().c_str(), ret ? "GOOD" : "BAD");
return ret;
} catch(std::ios_base::failure& e) {
ban = 0;
return false;
}
}
/*

Loading…
Cancel
Save