diff options
author | Lee Clagett <code@leeclagett.com> | 2018-12-17 19:05:27 -0500 |
---|---|---|
committer | Lee Clagett <code@leeclagett.com> | 2018-12-23 11:11:30 +0000 |
commit | a5ffc2d5ade4db49f31f169e8908065be8cdc0f2 (patch) | |
tree | 0260e16a461dfdc4da1fc48fc9f5fa632fd7ea4d /src/p2p/net_node.inl | |
parent | Merge pull request #4927 (diff) | |
download | monero-a5ffc2d5ade4db49f31f169e8908065be8cdc0f2.tar.xz |
Remove boost::lexical_cast for uuid and unused uuid function
Diffstat (limited to '')
-rw-r--r-- | src/p2p/net_node.inl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/p2p/net_node.inl b/src/p2p/net_node.inl index fbf265fc9..bfb017e99 100644 --- a/src/p2p/net_node.inl +++ b/src/p2p/net_node.inl @@ -33,6 +33,7 @@ #include <algorithm> #include <boost/date_time/posix_time/posix_time.hpp> #include <boost/thread/thread.hpp> +#include <boost/uuid/uuid_io.hpp> #include <boost/bind.hpp> #include <atomic> @@ -740,7 +741,7 @@ namespace nodetool if(rsp.node_data.network_id != m_network_id) { - LOG_WARNING_CC(context, "COMMAND_HANDSHAKE Failed, wrong network! (" << epee::string_tools::get_str_from_guid_a(rsp.node_data.network_id) << "), closing connection."); + LOG_WARNING_CC(context, "COMMAND_HANDSHAKE Failed, wrong network! (" << rsp.node_data.network_id << "), closing connection."); return; } @@ -1686,7 +1687,7 @@ namespace nodetool if(arg.node_data.network_id != m_network_id) { - LOG_INFO_CC(context, "WRONG NETWORK AGENT CONNECTED! id=" << epee::string_tools::get_str_from_guid_a(arg.node_data.network_id)); + LOG_INFO_CC(context, "WRONG NETWORK AGENT CONNECTED! id=" << arg.node_data.network_id); drop_connection(context); add_host_fail(context.m_remote_address); return 1; @@ -1802,7 +1803,7 @@ namespace nodetool { ss << cntxt.m_remote_address.str() << " \t\tpeer_id " << cntxt.peer_id - << " \t\tconn_id " << epee::string_tools::get_str_from_guid_a(cntxt.m_connection_id) << (cntxt.m_is_income ? " INC":" OUT") + << " \t\tconn_id " << cntxt.m_connection_id << (cntxt.m_is_income ? " INC":" OUT") << std::endl; return true; }); |