Differences From Artifact [47b287ba77]:
- File src/exceptions/OFBindFailedException.m — part of check-in [4a5822e7c0] at 2020-04-25 23:02:16 on branch trunk — Add OFIPXSocket (user: js, size: 2661) [annotate] [blame] [check-ins using]
To Artifact [66d49adee0]:
- File
src/exceptions/OFBindFailedException.m
— part of check-in
[37e6faa76f]
at
2020-04-26 10:06:05
on branch trunk
— Make GCC 4.6 happy again
I have no idea why it did not warn about shadowing socket before, but
now suddenly does. GCC 4.6 was such a buggy release that I most likely
don't even want to know... (user: js, size: 2645) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
27 28 29 30 31 32 33 |
+ (instancetype)exception
{
OF_UNRECOGNIZED_SELECTOR
}
+ (instancetype)exceptionWithHost: (OFString *)host
port: (uint16_t)port
| | | | | | | | | | 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 |
+ (instancetype)exception
{
OF_UNRECOGNIZED_SELECTOR
}
+ (instancetype)exceptionWithHost: (OFString *)host
port: (uint16_t)port
socket: (id)sock
errNo: (int)errNo
{
return [[[self alloc] initWithHost: host
port: port
socket: sock
errNo: errNo] autorelease];
}
+ (instancetype)exceptionWithPort: (uint16_t)port
packetType: (uint8_t)packetType
socket: (id)sock
errNo: (int)errNo
{
return [[[self alloc] initWithPort: port
packetType: packetType
socket: sock
errNo: errNo] autorelease];
}
- (instancetype)init
{
OF_INVALID_INIT_METHOD
}
- (instancetype)initWithHost: (OFString *)host
port: (uint16_t)port
socket: (id)sock
errNo: (int)errNo
{
self = [super init];
@try {
_host = [host copy];
_port = port;
_socket = [sock retain];
_errNo = errNo;
} @catch (id e) {
[self release];
@throw e;
}
return self;
}
- (instancetype)initWithPort: (uint16_t)port
packetType: (uint8_t)packetType
socket: (id)sock
errNo: (int)errNo
{
self = [super init];
@try {
_port = port;
_packetType = packetType;
_socket = [sock retain];
_errNo = errNo;
} @catch (id e) {
[self release];
@throw e;
}
return self;
|
| ︙ | ︙ |