diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2011-12-21 20:56:17 +0200 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2011-12-21 20:56:17 +0200 |
commit | ac5fac669d8162a81f77cc2f34be85f07e31f8f6 (patch) | |
tree | 1251aa0dd6af1b857156f9b2425d057736b260b2 /client/SslClient.cpp | |
parent | bf11b1575ecbc77bf8280733366ae92dfbb31300 (diff) | |
parent | 2fd868ae27d74305310e5bcd2a81cd07a87659b3 (diff) |
Merge branch 'master' of ssh://sss.chaoslab.ru//home/private_git/proxy_ui
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); |