diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-24 12:32:11 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-24 12:32:11 +0000 |
commit | cd89ac3c98e1b56f21215eec11fff386166b3d69 (patch) | |
tree | 4c238d74582030dd8d271417fc8894c6df5c63d3 /src/connection.cpp | |
parent | 6ac0b8647f9b70d86b39f8e60f0d7a5efbb15826 (diff) |
Fixed inbound server errors
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1491 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/connection.cpp')
-rw-r--r-- | src/connection.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/connection.cpp b/src/connection.cpp index 31080615d..7e54e4297 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -228,6 +228,8 @@ bool ircd_connector::FlushWriteBuf() int ret = poll(&polls,1,1); if (ret < 1) return true; + // this falls through and sends any waiting data, which can put it into the + // connected state. } if (sendq.length()) { |