@@ -55,13 +55,14 @@ * @brief A protocol that should be implemented by 3rd-party libraries * implementing TLS. */ @protocol OFTLSSocket #ifdef OF_HAVE_PROPERTIES -@property (assign, nullable) id delegate; -@property (copy, nullable) OFString *certificateFile, *privateKeyFile; -@property (assign, nullable) const char *privateKeyPassphrase; +@property OF_NULLABLE_PROPERTY (assign) id delegate; +@property OF_NULLABLE_PROPERTY (copy) + OFString *certificateFile, *privateKeyFile; +@property OF_NULLABLE_PROPERTY (assign) const char *privateKeyPassphrase; @property (getter=isCertificateVerificationEnabled) bool certificateVerificationEnabled; #endif /*!