1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 23:06:38 +02:00
Files
anope/modules/extra/ssl.h
T
Adam d44f7971b1 Rewrote some of the socket code to allow m_ssl to be a service.
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.
2010-10-01 21:01:49 -04:00

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;
};