diff options
author | Adam <Adam@anope.org> | 2013-01-03 11:41:32 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-01-03 12:34:01 -0500 |
commit | 098157dca8a4aecc18294cbc31cbe5ee95b35a94 (patch) | |
tree | 654f00f21e151ba9007ca8eb044a78fef1bd6e39 /include/uplink.h | |
parent | 827469600e8cf98fea7aec09ceaa77a097300b72 (diff) |
Don't delete users immediately when quit or killed, instead wait until message processing is done
Diffstat (limited to 'include/uplink.h')
-rw-r--r-- | include/uplink.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/uplink.h b/include/uplink.h index d635bd7d3..b0d6e06d2 100644 --- a/include/uplink.h +++ b/include/uplink.h @@ -26,9 +26,9 @@ class UplinkSocket : public ConnectionSocket, public BufferedSocket public: UplinkSocket(); ~UplinkSocket(); - bool Read(const Anope::string &); - void OnConnect(); - void OnError(const Anope::string &); + bool ProcessRead() anope_override; + void OnConnect() anope_override; + void OnError(const Anope::string &) anope_override; /* A message sent over the uplink socket */ class CoreExport Message |