Differences From Artifact [0cedeb4d4c]:
- File src/tls/OFMbedTLSTLSStream.h — part of check-in [7413a728a7] at 2024-04-03 02:16:03 on branch trunk — Change license to LGPLv3 only (user: js, size: 1040) [annotate] [blame] [check-ins using] [more...]
To Artifact [5e39028c75]:
- File src/tls/OFMbedTLSTLSStream.h — part of check-in [2cb48ceaf1] at 2024-11-18 00:38:04 on branch tls-server — OFGnuTLSTLSStream: Add server support (user: js, size: 1066) [annotate] [blame] [check-ins using]
︙ | |||
19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 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; |
︙ |