From d0b4b6492301b52d638b83614261be7e49061187 Mon Sep 17 00:00:00 2001 From: Nathan Hourt Date: Wed, 27 May 2015 16:15:49 -0400 Subject: [PATCH] Remove log spam --- include/fc/network/http/websocket.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/fc/network/http/websocket.hpp b/include/fc/network/http/websocket.hpp index 1969e09..c0c7266 100644 --- a/include/fc/network/http/websocket.hpp +++ b/include/fc/network/http/websocket.hpp @@ -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); } @@ -31,7 +31,7 @@ namespace fc { namespace http { fc::signal closed; private: - fc::any _session_data; + fc::any _session_data; std::function _on_message; std::function _on_http; }; @@ -39,7 +39,7 @@ namespace fc { namespace http { typedef std::function on_connection_handler; - class websocket_server + class websocket_server { public: websocket_server(); @@ -56,10 +56,10 @@ namespace fc { namespace http { }; - class websocket_tls_server + class websocket_tls_server { public: - websocket_tls_server( const std::string& server_pem = std::string(), + websocket_tls_server( const std::string& server_pem = std::string(), const std::string& ssl_password = std::string()); ~websocket_tls_server();