|
|
@ -34,6 +34,19 @@ bool dev::p2p::NodeIPEndpoint::test_allowLocal = false; |
|
|
|
|
|
|
|
//⊳⊲◀▶■▣▢□▷◁▧▨▩▲◆◉◈◇◎●◍◌○◼☑☒☎☢☣☰☀♽♥♠✩✭❓✔✓✖✕✘✓✔✅⚒⚡⦸⬌∅⁕«««»»»⚙━┅┉▬
|
|
|
|
|
|
|
|
#ifdef _WIN32 |
|
|
|
const char* NetWarn::name() { return EthYellow "N" EthRed " X"; } |
|
|
|
const char* NetImpolite::name() { return EthYellow "N" EthRed " !"; } |
|
|
|
const char* NetNote::name() { return EthYellow "N" EthBlue " i"; } |
|
|
|
const char* NetConnect::name() { return EthYellow "N" EthYellow " C"; } |
|
|
|
const char* NetMessageSummary::name() { return EthYellow "N" EthWhite " ."; } |
|
|
|
const char* NetMessageDetail::name() { return EthYellow "N" EthGray " o"; } |
|
|
|
const char* NetTriviaSummary::name() { return EthYellow "N" EthGray " O"; } |
|
|
|
const char* NetTriviaDetail::name() { return EthYellow "N" EthCoal " 0"; } |
|
|
|
const char* NetAllDetail::name() { return EthYellow "N" EthCoal " A"; } |
|
|
|
const char* NetRight::name() { return EthYellow "N" EthGreen "->"; } |
|
|
|
const char* NetLeft::name() { return EthYellow "N" EthNavy "<-"; } |
|
|
|
#else |
|
|
|
const char* NetWarn::name() { return EthYellow "⧎" EthRed " ✘"; } |
|
|
|
const char* NetImpolite::name() { return EthYellow "⧎" EthRed " !"; } |
|
|
|
const char* NetNote::name() { return EthYellow "⧎" EthBlue " ℹ"; } |
|
|
@ -45,6 +58,7 @@ const char* NetTriviaDetail::name() { return EthYellow "⧎" EthCoal " ◍"; } |
|
|
|
const char* NetAllDetail::name() { return EthYellow "⧎" EthCoal " ●"; } |
|
|
|
const char* NetRight::name() { return EthYellow "⧎" EthGreen "▬▶"; } |
|
|
|
const char* NetLeft::name() { return EthYellow "⧎" EthNavy "◀▬"; } |
|
|
|
#endif |
|
|
|
|
|
|
|
bool p2p::isPublicAddress(std::string const& _addressToCheck) |
|
|
|
{ |
|
|
|