diff options
author | Alex Borisov <borisov.alexandr@rambler.ru> | 2011-12-21 04:06:39 +0200 |
---|---|---|
committer | Alex Borisov <borisov.alexandr@rambler.ru> | 2011-12-21 04:06:39 +0200 |
commit | 2fd868ae27d74305310e5bcd2a81cd07a87659b3 (patch) | |
tree | 03141523c396af45835e070e858216633a05fc6b /client/SslClient.cpp | |
parent | 2f559d0e236c797e670f47cd70f52cde01092389 (diff) |
Generic proxy button work now. Proxy types support
Diffstat (limited to 'client/SslClient.cpp')
-rw-r--r-- | client/SslClient.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/client/SslClient.cpp b/client/SslClient.cpp index b8aa582..e13a028 100644 --- a/client/SslClient.cpp +++ b/client/SslClient.cpp @@ -205,10 +205,9 @@ void SslClient::DataRecieved() return; } -/* fprintf(stderr, "[ "); - const char * tmp = data.constData(); - for (int i = 0; i < data.size(); i++) + const char * tmp = pkt.constData(); + for (int i = 0; i < pkt.size(); i++) { if (tmp[i] < 0x20) { @@ -220,7 +219,6 @@ void SslClient::DataRecieved() } } fprintf(stderr, "]\n"); -*/ /* remove header and tail */ pkt.remove(pkt.size()-3, 3); |