removes raw debugging output

This commit is contained in:
Peter Thorson
2013-04-23 12:33:05 -05:00
parent c2fe98c9a4
commit b9ec2d5ae9
2 changed files with 2 additions and 11 deletions

View File

@@ -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
/**

View File

@@ -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);
}