diff options
| author | 2009-10-17 18:52:39 +0000 | |
|---|---|---|
| committer | 2009-10-17 18:52:39 +0000 | |
| commit | 9db7af579c46a9f0379fdf71fb773a0a76a94846 (patch) | |
| tree | 95a4772fa266aa7f0f51ff4218da85cf2c9a13ff /src/inspsocket.cpp | |
| parent | Remove dummy API_VERSION from Version constructor (diff) | |
Make classbase and refcountbase uncopyable; expand comments on their indended uses
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11888 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspsocket.cpp')
| -rw-r--r-- | src/inspsocket.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inspsocket.cpp b/src/inspsocket.cpp index 37335c855..fc8bc142f 100644 --- a/src/inspsocket.cpp +++ b/src/inspsocket.cpp @@ -145,10 +145,10 @@ void StreamSocket::Close() errno = save; } -bool StreamSocket::cull() +CullResult StreamSocket::cull() { Close(); - return true; + return EventHandler::cull(); } bool StreamSocket::GetNextLine(std::string& line, char delim) |
