Merge pull request #5956

ec7f2ff p2p: reject invalid rpc_port in peer lists (xiphon)
pull/326/head
luigi1111 5 years ago
commit 017baeeab5
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -1864,6 +1864,8 @@ namespace nodetool
const epee::net_utils::ipv4_network_address &ipv4 = na.as<const epee::net_utils::ipv4_network_address>();
if (ipv4.ip() == 0)
ignore = true;
else if (ipv4.port() == be.rpc_port)
ignore = true;
}
if (be.pruning_seed && (be.pruning_seed < tools::make_pruning_seed(1, CRYPTONOTE_PRUNING_LOG_STRIPES) || be.pruning_seed > tools::make_pruning_seed(1ul << CRYPTONOTE_PRUNING_LOG_STRIPES, CRYPTONOTE_PRUNING_LOG_STRIPES)))
ignore = true;

Loading…
Cancel
Save