Differences From Artifact [2c0b32486f]:
- File
src/exceptions/OFConnectionFailedException.m
— part of check-in
[ccc6a77c55]
at
2022-08-06 14:43:01
on branch trunk
— Reorder node and network of IPX sockets
This is more standard, albeit -[connectToNetwork:node:port:] sounding a
little bit more like you connect to a network rather than a node. (user: js, size: 3788) [annotate] [blame] [check-ins using] [more...]
To Artifact [d635dfc0b4]:
- File src/exceptions/OFConnectionFailedException.m — part of check-in [b29f11ed25] at 2022-10-22 16:41:01 on branch trunk — OF[IS]PX(Stream)Socket: Bind with network & node (user: js, size: 3800) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
44 45 46 47 48 49 50 |
{
return [[[self alloc] initWithPath: path
socket: sock
errNo: errNo] autorelease];
}
+ (instancetype)exceptionWithNetwork: (uint32_t)network
| | | 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
{
return [[[self alloc] initWithPath: path
socket: sock
errNo: errNo] autorelease];
}
+ (instancetype)exceptionWithNetwork: (uint32_t)network
node: (const unsigned char [IPX_NODE_LEN])node
port: (uint16_t)port
socket: (id)sock
errNo: (int)errNo
{
return [[[self alloc] initWithNetwork: network
node: node
port: port
|
| ︙ | ︙ | |||
95 96 97 98 99 100 101 | @throw e; } return self; } - (instancetype)initWithNetwork: (uint32_t)network | | | 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
@throw e;
}
return self;
}
- (instancetype)initWithNetwork: (uint32_t)network
node: (const unsigned char [IPX_NODE_LEN])node
port: (uint16_t)port
socket: (id)sock
errNo: (int)errNo
{
self = [super init];
@try {
|
| ︙ | ︙ |