Overview
| Comment: | OFDDPSocket: Don't include node in bind |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
607d4d083c860e2aa45bfaa623bee240 |
| User & Date: | js on 2022-10-25 21:30:29 |
| Other Links: | manifest | tags |
Context
|
2022-10-26
| ||
| 22:17 | OFDDPSocket: Revert not including node in bind (check-in: 8866fca78d user: js tags: trunk) | |
|
2022-10-25
| ||
| 23:10 | Fix building with Apple GCC 4.0.1 (check-in: 2b7c5eb0ec user: js tags: trunk) | |
| 21:30 | OFDDPSocket: Don't include node in bind (check-in: 607d4d083c user: js tags: trunk) | |
|
2022-10-23
| ||
| 16:21 | Rename a few exceptions for consistency (check-in: 2872ce314d user: js tags: trunk) | |
Changes
Modified src/OFDDPSocket.h from [ec6af069b2] to [6bae3c2189].
| ︙ | |||
58 59 60 61 62 63 64 | 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | - + + - + - - |
* @note The delegate is retained for as long as asynchronous operations are
* still ongoing.
*/
@property OF_NULLABLE_PROPERTY (assign, nonatomic)
id <OFDDPSocketDelegate> delegate;
/**
|
Modified src/OFDDPSocket.m from [b54a9f63cf] to [c23e962b99].
| ︙ | |||
27 28 29 30 31 32 33 | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | - + - - - + - - - - | #import "OFAlreadyConnectedException.h" #import "OFBindDDPSocketFailedException.h" @implementation OFDDPSocket @dynamic delegate; |
Modified src/exceptions/OFBindDDPSocketFailedException.h from [218affa1e0] to [7a444cec92].
| ︙ | |||
24 25 26 27 28 29 30 | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | - + - - - - - - - - - |
*
* @brief An exception indicating that binding a DDP socket failed.
*/
OF_SUBCLASSING_RESTRICTED
@interface OFBindDDPSocketFailedException: OFBindSocketFailedException
{
uint16_t _network;
|
Modified src/exceptions/OFBindDDPSocketFailedException.m from [dbb639a5e2] to [6c18b1ebdf].
| ︙ | |||
16 17 18 19 20 21 22 | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | - + - - - - - - - + + + | #include "config.h" #import "OFBindDDPSocketFailedException.h" #import "OFData.h" #import "OFString.h" @implementation OFBindDDPSocketFailedException |
Modified tests/OFDDPSocketTests.m from [cbe290bc1c] to [e653bd7196].
| ︙ | |||
28 29 30 31 32 33 34 | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | - - + + - + - + |
OFDDPSocket *sock;
OFSocketAddress address1, address2;
char buffer[5];
TEST(@"+[socket]", (sock = [OFDDPSocket socket]))
@try {
|
| ︙ |