diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-07 17:32:55 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-07 17:32:55 +0000 |
commit | 53f280ed2ec0fdcac4e0e60f5d2566ae9f701a97 (patch) | |
tree | 97df3f4601e5ec5fe7a3a86ce49ff8772c62e311 /include/socket.h | |
parent | 91ca2329986bf3b6611edbc88795d345a4c0353f (diff) |
Check for write errors in inspsocket (this is probably causing excessive cpu use when we have a large buffer to flush but a write error has occured (which we missed))
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3518 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/socket.h')
-rw-r--r-- | include/socket.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/socket.h b/include/socket.h index 1c343f122..861d4be79 100644 --- a/include/socket.h +++ b/include/socket.h @@ -32,7 +32,7 @@ enum InspSocketState { I_DISCONNECTED, I_RESOLVING, I_CONNECTING, I_CONNECTED, I /** * Error types which a socket may exhibit */ -enum InspSocketError { I_ERR_TIMEOUT, I_ERR_SOCKET, I_ERR_CONNECT, I_ERR_BIND, I_ERR_RESOLVE }; +enum InspSocketError { I_ERR_TIMEOUT, I_ERR_SOCKET, I_ERR_CONNECT, I_ERR_BIND, I_ERR_RESOLVE, I_ERR_WRITE }; /** * InspSocket is an extendable socket class which modules @@ -143,7 +143,7 @@ private: /** Flushes the write buffer */ - void FlushWriteBuffer(); + bool FlushWriteBuffer(); void SetQueues(int nfd); |