code style and documentation

This commit is contained in:
Peter Thorson
2014-03-02 21:39:34 -06:00
parent faad2ec854
commit bdeb4ad680
2 changed files with 12 additions and 14 deletions

View File

@@ -1204,9 +1204,7 @@ void connection<config>::send_http_response() {
}
template <typename config>
void connection<config>::handle_send_http_response(
const lib::error_code& ec)
{
void connection<config>::handle_send_http_response(lib::error_code const & ec) {
m_alog.write(log::alevel::devel,"handle_send_http_response");
this->atomic_state_check(
@@ -1318,7 +1316,7 @@ void connection<config>::send_http_request() {
}
template <typename config>
void connection<config>::handle_send_http_request(const lib::error_code& ec) {
void connection<config>::handle_send_http_request(lib::error_code const & ec) {
m_alog.write(log::alevel::devel,"handle_send_http_request");
this->atomic_state_check(
@@ -1438,13 +1436,13 @@ void connection<config>::handle_open_handshake_timeout(
lib::error_code const & ec)
{
if (ec == transport::error::operation_aborted) {
m_alog.write(log::alevel::devel,"asio open handshake timer cancelled");
m_alog.write(log::alevel::devel,"open handshake timer cancelled");
} else if (ec) {
m_alog.write(log::alevel::devel,
"asio open handle_open_handshake_timeout error: "+ec.message());
"open handle_open_handshake_timeout error: "+ec.message());
// TODO: ignore or fail here?
} else {
m_alog.write(log::alevel::devel,"asio open handshake timer expired");
m_alog.write(log::alevel::devel,"open handshake timer expired");
terminate(make_error_code(error::open_handshake_timeout));
}
}
@@ -1542,7 +1540,7 @@ void connection<config>::handle_terminate(terminate_status tstat,
if (m_termination_handler) {
try {
m_termination_handler(type::get_shared());
} catch (const std::exception& e) {
} catch (std::exception const & e) {
m_elog.write(log::elevel::warn,
std::string("termination_handler call failed. Reason was: ")+e.what());
}

View File

@@ -498,7 +498,7 @@ protected:
}
void handle_post_init_timeout(timer_ptr post_timer, init_handler callback,
const lib::error_code& ec)
lib::error_code const & ec)
{
lib::error_code ret_ec;
@@ -524,8 +524,8 @@ protected:
callback(ret_ec);
}
void handle_post_init(timer_ptr post_timer, init_handler callback, const
lib::error_code& ec)
void handle_post_init(timer_ptr post_timer, init_handler callback,
lib::error_code const & ec)
{
if (ec == transport::error::operation_aborted ||
post_timer->expires_from_now().is_negative())
@@ -965,7 +965,7 @@ protected:
}
void handle_async_shutdown_timeout(timer_ptr shutdown_timer, init_handler
callback, const lib::error_code& ec)
callback, lib::error_code const & ec)
{
lib::error_code ret_ec;
@@ -976,7 +976,7 @@ protected:
return;
}
log_err(log::elevel::devel,"asio handle_async_socket_shutdown",ec);
log_err(log::elevel::devel,"asio handle_async_shutdown_timeout",ec);
ret_ec = ec;
} else {
ret_ec = make_error_code(transport::error::timeout);
@@ -989,7 +989,7 @@ protected:
}
void handle_async_shutdown(timer_ptr shutdown_timer, shutdown_handler
callback, const boost::system::error_code & ec)
callback, boost::system::error_code const & ec)
{
if (ec == boost::asio::error::operation_aborted ||
shutdown_timer->expires_from_now().is_negative())