diff options
author | Alex Borisov <borisov.alexandr@rambler.ru> | 2011-11-17 00:06:16 +0200 |
---|---|---|
committer | Alex Borisov <borisov.alexandr@rambler.ru> | 2011-11-17 00:06:16 +0200 |
commit | b068f321dd9c6077c590473c4f108be87e7eb99d (patch) | |
tree | a24853f71981773b2a3051c2a32beea5c9c7dc59 /client/SslClient.cpp | |
parent | 5861309ceb8474cf0cdb4d29b2e3a0e76518a9aa (diff) |
Return to server config w permanent connection. Update message
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); } |