22 lines
301 B
C++
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
|