mirror of
https://github.com/anope/anope.git
synced 2026-06-25 04:16:39 +02:00
d44f7971b1
This allows modules (xmlrpc) to create and accept SSL connections. Also fixed unloading m_mysql at certain times and made the threading engine always work correctly on Windows.
10 lines
154 B
C++
10 lines
154 B
C++
|
|
class SSLService : public Service
|
|
{
|
|
public:
|
|
SSLService(Module *o, const Anope::string &n) : Service(o, n) { }
|
|
|
|
virtual void Init(Socket *s) = 0;
|
|
};
|
|
|