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.inl | |
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.inl')
-rw-r--r-- | src/p2p/net_node.inl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/p2p/net_node.inl b/src/p2p/net_node.inl index 9b21705ec..5f8699ac4 100644 --- a/src/p2p/net_node.inl +++ b/src/p2p/net_node.inl @@ -1293,6 +1293,20 @@ namespace nodetool m_connections_maker_interval.do_call(boost::bind(&node_server<t_payload_net_handler>::connections_maker, this)); m_gray_peerlist_housekeeping_interval.do_call(boost::bind(&node_server<t_payload_net_handler>::gray_peerlist_housekeeping, this)); m_peerlist_store_interval.do_call(boost::bind(&node_server<t_payload_net_handler>::store_config, this)); + m_incoming_connections_interval.do_call(boost::bind(&node_server<t_payload_net_handler>::check_incoming_connections, this)); + return true; + } + //----------------------------------------------------------------------------------- + template<class t_payload_net_handler> + bool node_server<t_payload_net_handler>::check_incoming_connections() + { + if (m_offline || m_hide_my_port) + return true; + if (get_incoming_connections_count() == 0) + { + const el::Level level = el::Level::Warning; + MCLOG_RED(level, "global", "No incoming connections - check firewalls/routers allow port " << get_this_peer_port()); + } return true; } //----------------------------------------------------------------------------------- |