diff options
author | Mathias Agopian <mathias@google.com> | 2009-06-05 15:11:57 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2009-06-05 15:11:57 -0700 |
commit | 9591b6d47a768cfe9c698323660e08b337a63cc1 (patch) | |
tree | 98e28d9914083563a0263c3f88e66ed4698bc12b /x-net/src | |
parent | a9d5d8ec169584eebe624ed6823ac69434f8d895 (diff) | |
download | libcore-9591b6d47a768cfe9c698323660e08b337a63cc1.zip libcore-9591b6d47a768cfe9c698323660e08b337a63cc1.tar.gz libcore-9591b6d47a768cfe9c698323660e08b337a63cc1.tar.bz2 |
remove all references to LogSocket.h
Diffstat (limited to 'x-net/src')
-rw-r--r-- | x-net/src/main/native/org_apache_harmony_xnet_provider_jsse_OpenSSLSocketImpl.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/x-net/src/main/native/org_apache_harmony_xnet_provider_jsse_OpenSSLSocketImpl.cpp b/x-net/src/main/native/org_apache_harmony_xnet_provider_jsse_OpenSSLSocketImpl.cpp index 250cf83..fd68460 100644 --- a/x-net/src/main/native/org_apache_harmony_xnet_provider_jsse_OpenSSLSocketImpl.cpp +++ b/x-net/src/main/native/org_apache_harmony_xnet_provider_jsse_OpenSSLSocketImpl.cpp @@ -36,8 +36,6 @@ #include <openssl/rand.h> #include <openssl/ssl.h> -#include <utils/LogSocket.h> - #include "org_apache_harmony_xnet_provider_jsse_common.h" /** @@ -693,7 +691,6 @@ static int sslRead(SSL* ssl, char* buf, jint len, int* sslReturnCode, switch (error) { // Sucessfully read at least one byte. case SSL_ERROR_NONE: { - add_recv_stats(fd, result); return result; } @@ -861,7 +858,6 @@ static int sslWrite(SSL* ssl, const char* buf, jint len, int* sslReturnCode, } } } - add_send_stats(fd, count); // LOGD("Successfully wrote %d bytes", count); return count; |