Differences From Artifact [a4be0b4e2f]:
- File src/exceptions/OFBindFailedException.m — part of check-in [c7f0229795] at 2020-01-02 01:51:34 on branch trunk — Update copyright (user: js, size: 1781) [annotate] [blame] [check-ins using] [more...]
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...]
| ︙ | ︙ | |||
17 18 19 20 21 22 23 | #include "config.h" #import "OFBindFailedException.h" #import "OFString.h" @implementation OFBindFailedException | | > | | > > > > > > > > > > > | | > > > > > > > > > > > > > > > > > > > > > | | | | > > > > > | 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 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 113 114 115 116 117 118 119 120 |
#include "config.h"
#import "OFBindFailedException.h"
#import "OFString.h"
@implementation OFBindFailedException
@synthesize host = _host, port = _port, packetType = _packetType;
@synthesize socket = _socket, errNo = _errNo;
+ (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;
}
- (void)dealloc
{
[_host release];
[_socket release];
[super dealloc];
}
- (OFString *)description
{
if (_host != nil)
return [OFString stringWithFormat:
@"Binding to port %" @PRIu16 @" on host %@ failed in "
@"socket of type %@: %@",
_port, _host, [_socket class], of_strerror(_errNo)];
else
return [OFString stringWithFormat:
@"Binding to port %" @PRIx16 @" for packet type %" @PRIx8
@" failed in socket of type %@: %@",
_port, _packetType, [_socket class], of_strerror(_errNo)];
}
@end
|