From e0685d412a931520766ce4e1678760c1fb06a1e2 Mon Sep 17 00:00:00 2001 From: fluffypony Date: Wed, 4 Jun 2014 22:53:54 +0200 Subject: [PATCH 1/3] don't fall apart if you can't get_line --- contrib/epee/include/console_handler.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/contrib/epee/include/console_handler.h b/contrib/epee/include/console_handler.h index fcab35aaa..23184eea6 100644 --- a/contrib/epee/include/console_handler.h +++ b/contrib/epee/include/console_handler.h @@ -257,9 +257,8 @@ namespace epee std::string command; if(!m_stdin_reader.get_line(command)) { - LOG_PRINT("Failed to read line. Stopping...", LOG_LEVEL_0); - continue_handle = false; - break; + LOG_PRINT("Failed to read line. Ignoring and continuing to run, exiting daemon may require a SIGTERM kill.", LOG_LEVEL_0); + continue; } string_tools::trim(command); From 240fce29d8a0f9aad5fcbdc7912bee44e0b9c161 Mon Sep 17 00:00:00 2001 From: fluffypony Date: Fri, 6 Jun 2014 19:06:28 +0200 Subject: [PATCH 2/3] removed continue issue --- contrib/epee/include/console_handler.h | 1 - 1 file changed, 1 deletion(-) diff --git a/contrib/epee/include/console_handler.h b/contrib/epee/include/console_handler.h index 23184eea6..356ee7f9a 100644 --- a/contrib/epee/include/console_handler.h +++ b/contrib/epee/include/console_handler.h @@ -258,7 +258,6 @@ namespace epee if(!m_stdin_reader.get_line(command)) { LOG_PRINT("Failed to read line. Ignoring and continuing to run, exiting daemon may require a SIGTERM kill.", LOG_LEVEL_0); - continue; } string_tools::trim(command); From 8e0f20f77102c867f90e2fd9d178206e9c024328 Mon Sep 17 00:00:00 2001 From: fluffypony Date: Tue, 10 Jun 2014 17:29:37 +0200 Subject: [PATCH 3/3] added new seed nodes --- src/p2p/net_node.inl | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/p2p/net_node.inl b/src/p2p/net_node.inl index e45e51b77..16140cf35 100644 --- a/src/p2p/net_node.inl +++ b/src/p2p/net_node.inl @@ -193,6 +193,15 @@ namespace nodetool template bool node_server::init(const boost::program_options::variables_map& vm) { + ADD_HARDCODED_SEED_NODE("62.210.78.186:18080"); + ADD_HARDCODED_SEED_NODE("195.12.60.154:18080"); + ADD_HARDCODED_SEED_NODE("54.241.246.125:18080"); + ADD_HARDCODED_SEED_NODE("107.170.157.169:18080"); + ADD_HARDCODED_SEED_NODE("54.207.112.216:18080"); + ADD_HARDCODED_SEED_NODE("78.27.112.54:18080"); + ADD_HARDCODED_SEED_NODE("209.222.30.57:18080"); + ADD_HARDCODED_SEED_NODE("80.71.13.55:18080"); + ADD_HARDCODED_SEED_NODE("107.178.112.126:18080"); ADD_HARDCODED_SEED_NODE("107.158.233.98:18080"); ADD_HARDCODED_SEED_NODE("64.22.111.2:18080");