diff options
author | Adam <Adam@anope.org> | 2013-04-16 01:58:29 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-04-16 01:58:29 -0500 |
commit | 781defb7076ddfddf723ca08cd0a518b6657b64f (patch) | |
tree | 911049f9e1bcf6a32e76c9b8800bf99f56edce02 /modules/ssl.h | |
parent | 16c124d34e43282da6c552739211f8d8aca04791 (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.h | 9 |
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; +}; + |