diff options
author | Adam <Adam@anope.org> | 2010-09-09 23:43:11 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-09-09 23:43:11 -0400 |
commit | 46813ccb8c6ab572b8a9ff0a39afb1d92dc4482b (patch) | |
tree | 562da502a102230ce207bbe921fdc978ee71e20c /include/socketengine.h | |
parent | fdd196e50b4616ac377bd0ee0ae5ce6c57b657ee (diff) |
Added an asynchronous DNS system and m_dnsbl, which checks clients against DNS blacklists.
Rewrote internal handling of IPs, we now properly support users using IPv6.
Fixed a few problems with the UnrealIRCd protocol module.
Diffstat (limited to 'include/socketengine.h')
-rw-r--r-- | include/socketengine.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/socketengine.h b/include/socketengine.h index 7279ba3ad..c45249810 100644 --- a/include/socketengine.h +++ b/include/socketengine.h @@ -43,12 +43,12 @@ class CoreExport SocketEngineBase /** Mark a socket as writeable * @param s The socket */ - virtual void MarkWriteable(Socket *s) { } + virtual void MarkWritable(Socket *s) { } /** Unmark a socket as writeable * @param s The socket */ - virtual void ClearWriteable(Socket *s) { } + virtual void ClearWritable(Socket *s) { } /** Read from sockets and do things */ |