adds documentation and removes unused parameters references #376

This commit is contained in:
Peter Thorson
2014-10-07 10:04:54 -04:00
parent fe6d82e7a3
commit e8d25d22bc
20 changed files with 215 additions and 73 deletions

View File

@@ -80,7 +80,7 @@ void on_message(server* s, websocketpp::connection_hdl hdl, message_ptr msg) {
s->send(hdl, msg->get_payload(), msg->get_opcode());
}
void on_socket_init(websocketpp::connection_hdl hdl, boost::asio::ip::tcp::socket & s) {
void on_socket_init(websocketpp::connection_hdl, boost::asio::ip::tcp::socket & s) {
boost::asio::ip::tcp::no_delay option(true);
s.set_option(option);
}