Overview
Comment: | Adjust to ObjFW changes |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
586a59246aca22584647faf639282bce |
User & Date: | js on 2017-07-22 23:09:18 |
Other Links: | manifest | tags |
Context
2017-07-22
| ||
23:32 | X509Certificate: Fix typo check-in: ad16b8498f user: js tags: trunk | |
23:09 | Adjust to ObjFW changes check-in: 586a59246a user: js tags: trunk | |
2017-07-02
| ||
12:22 | Adjust to ObjFW changes check-in: 9c2e824983 user: js tags: trunk | |
Changes
Modified src/SSLSocket.h from [b846ea7d60] to [8b46b339d4].
︙ | |||
41 42 43 44 45 46 47 | 41 42 43 44 45 46 47 48 49 50 51 52 | - + | @property (nonatomic, getter=isRequestClientCertificatesEnabled) bool requestClientCertificatesEnabled; @property OF_NULLABLE_PROPERTY (readonly, nonatomic) X509Certificate *peerCertificate; - initWithSocket: (OFTCPSocket *)socket; |
Modified src/SSLSocket.m from [3aefdbc324] to [1e01bcd98b].
︙ | |||
39 40 41 42 43 44 45 | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | - + | #if defined(__clang__) # pragma clang diagnostic pop #endif #import <ObjFW/OFThread.h> #import <ObjFW/OFHTTPRequest.h> |
︙ | |||
419 420 421 422 423 424 425 | 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 | - + - - - - + + - - | - (const char *)privateKeyPassphraseForSNIHost: (OFString *)SNIHost { /* TODO */ OF_UNRECOGNIZED_SELECTOR } |
︙ |
Modified src/X509Certificate.m from [ed578c75c6] to [753b8d7922].
︙ | |||
33 34 35 36 37 38 39 | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | - + | # pragma clang diagnostic pop #endif #import "X509Certificate.h" #import <ObjFW/OFAutoreleasePool.h> #import <ObjFW/OFArray.h> |
︙ | |||
68 69 70 71 72 73 74 | 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | - - - + + - + | - initWithFile: (OFString *)path { self = [super init]; @try { OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; |
︙ |