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