Differences From Artifact [482ed92e1f]:
- File
src/SSLSocket.h
— part of check-in
[ecf34717f0]
at
2017-07-22 23:34:45
on branch trunk
— SSLSocket: Re-add verifyPeerCertificate
This was accidentally removed from the interface. (user: js, size: 1969) [annotate] [blame] [check-ins using] [more...]
To Artifact [1ced025d5c]:
- File src/SSLSocket.h — part of check-in [b9937d8663] at 2017-08-01 19:03:59 on branch trunk — Fix compilation with GCC (user: js, size: 2006) [annotate] [blame] [check-ins using]
︙ | |||
29 30 31 32 33 34 35 36 37 38 39 40 41 42 | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | + | OF_ASSUME_NONNULL_BEGIN @class X509Certificate; @interface SSLSocket: OFTCPSocket <OFTLSSocket> { SSL *_SSL; id <OFTLSSocketDelegate> _delegate; OFString *_certificateFile, *_privateKeyFile; const char *_privateKeyPassphrase; bool _certificateVerificationEnabled; bool _requestClientCertificatesEnabled; } @property (nonatomic, getter=isRequestClientCertificatesEnabled) |
︙ |