Merge branch 'master' of github.com:BitShares/fc

This commit is contained in:
Daniel Larimer 2015-05-28 08:43:47 -04:00
commit 2d5f89bd17

View file

@ -17,7 +17,7 @@ namespace fc { namespace http {
class websocket_connection
{
public:
virtual ~websocket_connection(){ wlog("."); };
virtual ~websocket_connection(){}
virtual void send_message( const std::string& message ) = 0;
virtual void close( int64_t code, const std::string& reason ){};
void on_message( const std::string& message ) { _on_message(message); }