Differences From Artifact [2e553f0270]:
- File
src/exceptions/OFTLSHandshakeFailedException.m
— part of check-in
[112eb62f7b]
at
2021-11-13 20:28:25
on branch trunk
— Add OFSecureTransportTLSStream
This implements OFTLSStream using Apple's Secure Transport. While Secure
Transport is declared deprecated by Apple, Apple so far has failed to
provide a suitable replacement. They recommend Network.framework as a
replacement, however it can neither work on arbitrary sockets, nor can
it do STARTTLS. (user: js, size: 1860) [annotate] [blame] [check-ins using]
To Artifact [ba4934a59a]:
- File
src/exceptions/OFTLSHandshakeFailedException.m
— part of check-in
[8f8af474fc]
at
2021-11-20 13:18:28
on branch trunk
— Move TLS implementations to a separate library
These implementations all depend on additional libraries that are
otherwise not needed for an ObjFW application that does not use TLS,
meaning they would add unnecessary dependencies for a lot of
applications and waste memory. (user: js, size: 1907) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
* file.
*/
#include "config.h"
#import "OFTLSHandshakeFailedException.h"
#import "OFString.h"
@implementation OFTLSHandshakeFailedException
@synthesize stream = _stream, host = _host, errorCode = _errorCode;
+ (instancetype)exception
{
OF_UNRECOGNIZED_SELECTOR
| > > | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
* file.
*/
#include "config.h"
#import "OFTLSHandshakeFailedException.h"
#import "OFString.h"
int _OFTLSHandshakeFailedException_reference;
@implementation OFTLSHandshakeFailedException
@synthesize stream = _stream, host = _host, errorCode = _errorCode;
+ (instancetype)exception
{
OF_UNRECOGNIZED_SELECTOR
|
| ︙ | ︙ |