diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-05-25 12:34:52 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-05-26 14:37:07 +0100 |
commit | de1ffe07b12073c3845b660c98052a9c1c31c594 (patch) | |
tree | 1b0c47b5a2a3bfe7bf6066e2af7134c01be7b198 /src/p2p/net_node.h | |
parent | Merge pull request #3800 (diff) | |
download | monero-de1ffe07b12073c3845b660c98052a9c1c31c594.tar.xz |
p2p: warn when no incoming connections are seen for a while
Diffstat (limited to 'src/p2p/net_node.h')
-rw-r--r-- | src/p2p/net_node.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/p2p/net_node.h b/src/p2p/net_node.h index 4606f66ee..077296acd 100644 --- a/src/p2p/net_node.h +++ b/src/p2p/net_node.h @@ -244,6 +244,7 @@ namespace nodetool bool check_connection_and_handshake_with_peer(const epee::net_utils::network_address& na, uint64_t last_seen_stamp); bool gray_peerlist_housekeeping(); + bool check_incoming_connections(); void kill() { ///< will be called e.g. from deinit() _info("Killing the net_node"); @@ -307,6 +308,7 @@ namespace nodetool epee::math_helper::once_a_time_seconds<1> m_connections_maker_interval; epee::math_helper::once_a_time_seconds<60*30, false> m_peerlist_store_interval; epee::math_helper::once_a_time_seconds<60> m_gray_peerlist_housekeeping_interval; + epee::math_helper::once_a_time_seconds<900, false> m_incoming_connections_interval; std::string m_bind_ip; std::string m_port; |