19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#import "OFTLSStream.h"
#include <mbedtls/ssl.h>
OF_ASSUME_NONNULL_BEGIN
@interface OFMbedTLSTLSStream: OFTLSStream <OFStreamDelegate>
{
bool _initialized, _handshakeDone;
mbedtls_ssl_config _config;
mbedtls_ssl_context _SSL;
mbedtls_x509_crt _CAChain;
OFString *_host;
|
>
|
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#import "OFTLSStream.h"
#include <mbedtls/ssl.h>
OF_ASSUME_NONNULL_BEGIN
OF_SUBCLASSING_RESTRICTED
@interface OFMbedTLSTLSStream: OFTLSStream <OFStreamDelegate>
{
bool _initialized, _handshakeDone;
mbedtls_ssl_config _config;
mbedtls_ssl_context _SSL;
mbedtls_x509_crt _CAChain;
OFString *_host;
|