diff options
| author | 2016-08-08 14:28:02 +0200 | |
|---|---|---|
| committer | 2016-08-08 14:28:02 +0200 | |
| commit | 3a11a742ba35155e1b2e14dc4ef1a4f7f659ea13 (patch) | |
| tree | 57bf58a4299457a365ebb6d5120a4154871dff6f /src/inspsocket.cpp | |
| parent | Predeclare IOHookProvider, remove iohook.h include from socket.h (diff) | |
Pass sendq to OnStreamSocketWrite
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 89c3a71a9..dcc455482 100644 --- a/src/inspsocket.cpp +++ b/src/inspsocket.cpp @@ -201,7 +201,7 @@ void StreamSocket::DoWrite() if (GetIOHook()) { - int rv = GetIOHook()->OnStreamSocketWrite(this); + int rv = GetIOHook()->OnStreamSocketWrite(this, sendq); if (rv < 0) SetError("Write Error"); // will not overwrite a better error message |
