1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 13:16:38 +02:00
Files
anope/include/modules/ssl.h
T
2024-01-04 22:25:48 +00:00

18 lines
307 B
C++

/*
*
* (C) 2010-2024 Anope Team
* Contact us at team@anope.org
*
* Please read COPYING and README for further details.
*/
#pragma once
class SSLService : public Service
{
public:
SSLService(Module *o, const Anope::string &n) : Service(o, "SSLService", n) { }
virtual void Init(Socket *s) = 0;
};