diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-05-28 22:10:28 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-05-28 22:10:28 +0200 |
commit | ee947c5aa6541b5115645755d924eeb66e7d6738 (patch) | |
tree | f77fadabc513dcc8e32f06bddf14b40f3e1a0073 /src/inspsocket.cpp | |
parent | 52458f91f1c03294d8edf2f264051b8e1e25f853 (diff) |
Use socketengine functions for sending and receiving data instead of plain send() and recv() so /STATS z displays correct bandwidth usage
Diffstat (limited to 'src/inspsocket.cpp')
-rw-r--r-- | src/inspsocket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspsocket.cpp b/src/inspsocket.cpp index 1254dc58b..3841c6147 100644 --- a/src/inspsocket.cpp +++ b/src/inspsocket.cpp @@ -194,7 +194,7 @@ void StreamSocket::DoRead() else { char* ReadBuffer = ServerInstance->GetReadBuffer(); - int n = recv(fd, ReadBuffer, ServerInstance->Config->NetBufferSize, 0); + int n = ServerInstance->SE->Recv(this, ReadBuffer, ServerInstance->Config->NetBufferSize, 0); if (n == ServerInstance->Config->NetBufferSize) { ServerInstance->SE->ChangeEventMask(this, FD_WANT_FAST_READ | FD_ADD_TRIAL_READ); |