53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
-
+
|
* @brief A protocol that should be implemented by 3rd-party libraries
* implementing TLS.
*/
@protocol OFTLSSocket
/*!
* The delegate for the TLS socket.
*/
@property OF_NULLABLE_PROPERTY (assign) id <OFTLSSocket> delegate;
@property OF_NULLABLE_PROPERTY (assign) id <OFTLSSocketDelegate> delegate;
/*!
* The path to the X.509 certificate file to use.
*/
@property OF_NULLABLE_PROPERTY (copy) OFString *certificateFile;
/*!
|