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