adjust chat server/client for new connection_handler ifc

This commit is contained in:
Tobias Oberstein
2011-10-26 17:05:37 +02:00
parent 2c47fe17a4
commit cc08864401
4 changed files with 4 additions and 4 deletions

View File

@@ -39,7 +39,7 @@ void chat_client_handler::on_open(session_ptr s) {
std::cout << "Successfully connected" << std::endl;
}
void chat_client_handler::on_close(session_ptr s,uint16_t status,const std::string &reason) {
void chat_client_handler::on_close(session_ptr s) {
// not sure if anything needs to happen here either.
m_session = client_session_ptr();