Overview
| Comment: | OFTLSSocket: Fix wrong protocol for delegate |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
55dc5a174cb7740707362ba261e9c4b2 |
| User & Date: | js on 2016-05-05 17:05:47 |
| Other Links: | manifest | tags |
Context
|
2016-05-05
| ||
| 19:54 | OFStream: Cache small reads to reduce syscalls (check-in: a7d66e7ab2 user: js tags: trunk) | |
| 17:05 | OFTLSSocket: Fix wrong protocol for delegate (check-in: 55dc5a174c user: js tags: trunk) | |
|
2016-04-24
| ||
| 16:58 | OFFileManager: Fix nil that should be NULL (check-in: 7c2b71f536 user: js tags: trunk) | |
Changes
Modified src/OFTLSSocket.h from [81b5fff19e] to [8486e61a20].
| ︙ | ︙ | |||
53 54 55 56 57 58 59 | * @brief A protocol that should be implemented by 3rd-party libraries * implementing TLS. */ @protocol OFTLSSocket /*! * The delegate for the TLS socket. */ | | | 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 <OFTLSSocketDelegate> delegate; /*! * The path to the X.509 certificate file to use. */ @property OF_NULLABLE_PROPERTY (copy) OFString *certificateFile; /*! |
| ︙ | ︙ |