mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
removes raw debugging output
This commit is contained in:
@@ -213,10 +213,7 @@ public:
|
||||
/// component.
|
||||
typedef socket_con_type::ptr socket_con_ptr;
|
||||
|
||||
explicit endpoint() {
|
||||
std::cout << "transport::asio::basic_socket::endpoint constructor"
|
||||
<< std::endl;
|
||||
}
|
||||
explicit endpoint() {}
|
||||
|
||||
/// Checks whether the endpoint creates secure connections
|
||||
/**
|
||||
|
||||
@@ -167,9 +167,7 @@ protected:
|
||||
* @param is_server Whether or not the endpoint is a server or not.
|
||||
*/
|
||||
lib::error_code init_asio (io_service_ptr service, bool is_server) {
|
||||
std::cout << "transport::security::tls_socket::init_asio" << std::endl;
|
||||
if (!m_tls_init_handler) {
|
||||
std::cout << "missing_tls_init_handler" << std::endl;
|
||||
return socket::make_error(socket::error::missing_tls_init_handler);
|
||||
}
|
||||
m_context = m_tls_init_handler(m_hdl);
|
||||
@@ -307,10 +305,7 @@ public:
|
||||
/// component.
|
||||
typedef socket_con_type::ptr socket_con_ptr;
|
||||
|
||||
explicit endpoint() {
|
||||
std::cout << "transport::asio::tls_socket::endpoint constructor"
|
||||
<< std::endl;
|
||||
}
|
||||
explicit endpoint() {}
|
||||
|
||||
/// Checks whether the endpoint creates secure connections
|
||||
/**
|
||||
@@ -351,7 +346,6 @@ protected:
|
||||
* the socket component of the connection.
|
||||
*/
|
||||
void init(socket_con_ptr scon) {
|
||||
std::cout << "transport::asio::tls_socket::init" << std::endl;
|
||||
scon->set_socket_init_handler(m_socket_init_handler);
|
||||
scon->set_tls_init_handler(m_tls_init_handler);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user