diff options
Diffstat (limited to 'protocols/WhatsApp/src/WASocketConnection.cpp')
-rw-r--r-- | protocols/WhatsApp/src/WASocketConnection.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/protocols/WhatsApp/src/WASocketConnection.cpp b/protocols/WhatsApp/src/WASocketConnection.cpp index 6852fb92dd..00e3aa9933 100644 --- a/protocols/WhatsApp/src/WASocketConnection.cpp +++ b/protocols/WhatsApp/src/WASocketConnection.cpp @@ -134,21 +134,6 @@ void WASocketConnection::forceShutdown() Netlib_Shutdown(this->hConn);
}
-void WASocketConnection::dump(const void *pData, int length)
-{
- BYTE *pBuf = (BYTE*)pData;
- while (length > 0) {
- int portion = (length < 16) ? length : 16;
-
- char str[100];
- for (int i = 0; i < portion; i++)
- sprintf(str + i * 3, "%02X ", *pBuf++);
- Netlib_Logf(WASocketConnection::hNetlibUser, "DATA: %s", str);
-
- length -= portion;
- }
-}
-
void WASocketConnection::log(const char *str)
{
Netlib_Logf(WASocketConnection::hNetlibUser, "STR: %s", str);
|