ServerCore/TLSService.h
2019-02-16 13:08:24 -08:00

22 lines
301 B
C++

#ifndef __TLSService_h__
#define __TLSService_h__
#include "includes"
#include "Service.h"
#include "TLSServerSocket.h"
namespace core {
class TLSService : public Service {
public:
TLSService(TLSServerSocket &server);
SSL_CTX *ctx;
};
}
#endif