remove unneeded code

This commit is contained in:
Peter Thorson
2014-12-08 19:26:24 -05:00
parent bc868a244d
commit e7b2e69ecb
@@ -156,19 +156,13 @@ public:
con->set_status(websocketpp::http::status_code::ok);
}
// The open handler will signal that we are ready to start sending telemetry
void on_open(connection_hdl hdl) {
m_connections.insert(hdl);
}
// The close handler will signal that we should stop sending telemetry
void on_close(connection_hdl hdl) {
m_connections.erase(hdl);
}
// The fail handler will signal that we should stop sending telemetry
void on_fail(connection_hdl) {
}
private:
typedef std::set<connection_hdl,std::owner_less<connection_hdl>> con_list;