144
145
146
147
148
149
150
151
152
153
|
else
return [OFString stringWithFormat:
@"A connection to %@ on port %" @PRIu16 @" could "
@"not be established in socket of type %@: %s",
_host, _port, [_socket class], error];
}
return [super description];
}
@end
|
|
|
144
145
146
147
148
149
150
151
152
153
|
else
return [OFString stringWithFormat:
@"A connection to %@ on port %" @PRIu16 @" could "
@"not be established in socket of type %@: %s",
_host, _port, [_socket class], error];
}
return super.description;
}
@end
|