ServerCore/TLSSocket.h
2022-04-11 21:06:21 -07:00

22 lines
270 B
C++

#ifndef __TLSSocket_h__
#define __TLSSocket_h__
namespace core {
///
/// Instantiate the TLSSocket object into the TCPSocket to
/// encrypt the TCP connection.
///
class TLSSocket {
public:
TLSSocket();
~TLSSocket();
};
}
#endif