summaryrefslogtreecommitdiff
path: root/modules/ssl.h
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-04-16 01:58:29 -0500
committerAdam <Adam@anope.org>2013-04-16 01:58:29 -0500
commit781defb7076ddfddf723ca08cd0a518b6657b64f (patch)
tree911049f9e1bcf6a32e76c9b8800bf99f56edce02 /modules/ssl.h
parent16c124d34e43282da6c552739211f8d8aca04791 (diff)
Move extras header files out of extras so when users copy modules out they dont need the headers too
Diffstat (limited to 'modules/ssl.h')
-rw-r--r--modules/ssl.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/ssl.h b/modules/ssl.h
new file mode 100644
index 000000000..6eb97582c
--- /dev/null
+++ b/modules/ssl.h
@@ -0,0 +1,9 @@
+
+class SSLService : public Service
+{
+ public:
+ SSLService(Module *o, const Anope::string &n) : Service(o, "SSLService", n) { }
+
+ virtual void Init(Socket *s) = 0;
+};
+