diff options
Diffstat (limited to 'client/SslClient.cpp')
-rw-r--r-- | client/SslClient.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/client/SslClient.cpp b/client/SslClient.cpp index c04667b..25165d2 100644 --- a/client/SslClient.cpp +++ b/client/SslClient.cpp @@ -109,10 +109,6 @@ void SslClient::Connected() void SslClient::Disconnected() { Logger::Info("Disconnected from server %s\n", server.toStdString().c_str()); - -#ifdef DEBUG - SendRequest(StaticProxyList); -#endif } void SslClient::DataRecieved() @@ -157,12 +153,6 @@ void SslClient::DataRecieved() /* remove header and tail */ data.remove(0, 3); data.remove(length-1, 3); - -#ifdef DEBUG - Logger::Debug("Disconnecting from server\n"); - sslSocket.disconnectFromHost(); -#endif - emit ReplyRecieved(type, data); } |