diff options
author | Adam <Adam@anope.org> | 2012-10-24 19:32:26 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-10-24 19:32:26 -0400 |
commit | 1057fa842144e84563ddd887beaeaebe8c4f8a47 (patch) | |
tree | c43d1706df45866d5c13fcfb8333d3ee62bbdfd0 /include/sockets.h | |
parent | fca9ec085e74efa005dd981f2af2a6d6fd78ce89 (diff) |
BIND's forward ability did not work as I expected
because it will not forward non recursive queries.
So, added support for SOA, NS, and AXFR requests.
Diffstat (limited to 'include/sockets.h')
-rw-r--r-- | include/sockets.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sockets.h b/include/sockets.h index 6b1fca441..ea59346db 100644 --- a/include/sockets.h +++ b/include/sockets.h @@ -358,7 +358,7 @@ class CoreExport BinarySocket : public virtual Socket virtual bool Read(const char *buffer, size_t l); }; -class CoreExport ListenSocket : public Socket +class CoreExport ListenSocket : public virtual Socket { public: /** Constructor |