mirror of
https://github.com/anope/anope.git
synced 2026-06-30 03:16:37 +02:00
10 lines
178 B
C++
10 lines
178 B
C++
|
|
class SSLService : public Service<SSLService>
|
|
{
|
|
public:
|
|
SSLService(Module *o, const Anope::string &n) : Service<SSLService>(o, n) { }
|
|
|
|
virtual void Init(Socket *s) = 0;
|
|
};
|
|
|