Overview
| Comment: | OFDDPSocket: Revert not including node in bind
Looking at the NetBSD code (/usr/src/sys/netatalk/ddp_usrreq.c), it |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
8866fca78d8dcf9056ca54333a4ceb89 |
| User & Date: | js on 2022-10-26 22:17:16 |
| Other Links: | manifest | tags |
Context
|
2022-10-30
| ||
| 18:25 | OFSystemInfo: Add fallback to MAX_PATH (check-in: a3caef326b user: js tags: trunk) | |
|
2022-10-26
| ||
| 22:17 | OFDDPSocket: Revert not including node in bind (check-in: 8866fca78d user: js tags: trunk) | |
| 20:58 | configure: Prefer GnuTLS over OpenSSL (check-in: b8d47bbbf0 user: js tags: trunk) | |
|
2022-10-25
| ||
| 21:30 | OFDDPSocket: Don't include node in bind (check-in: 607d4d083c user: js tags: trunk) | |
Changes
Modified src/OFDDPSocket.h from [6bae3c2189] to [987ad37c95].
| ︙ | |||
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 78 79 80 | - + + - + + + |
* @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 [c23e962b99] to [b54a9f63cf].
| ︙ | |||
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 107 108 109 110 111 112 | - + + + - + + + + + | #import "OFAlreadyConnectedException.h" #import "OFBindDDPSocketFailedException.h" @implementation OFDDPSocket @dynamic delegate; |
Modified src/exceptions/OFBindDDPSocketFailedException.h from [7a444cec92] to [218affa1e0].
| ︙ | |||
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 79 80 81 82 83 84 85 86 87 | - + + + + + + + + + + |
*
* @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 [6c18b1ebdf] to [dbb639a5e2].
| ︙ | |||
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 72 73 74 75 | - + + + + + - - - + + + | #include "config.h" #import "OFBindDDPSocketFailedException.h" #import "OFData.h" #import "OFString.h" @implementation OFBindDDPSocketFailedException |
Modified tests/OFDDPSocketTests.m from [e653bd7196] to [cbe290bc1c].
| ︙ | |||
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 {
|
| ︙ |