mirror of
https://github.com/anope/anope.git
synced 2026-06-24 00:26:38 +02:00
10 lines
168 B
C++
10 lines
168 B
C++
|
|
class SSLService : public Service
|
|
{
|
|
public:
|
|
SSLService(Module *o, const Anope::string &n) : Service(o, "SSLService", n) { }
|
|
|
|
virtual void Init(Socket *s) = 0;
|
|
};
|
|
|