@@ -40,25 +40,25 @@ #endif @implementation SSLConnectionFailedException @synthesize SSLError = _SSLError, verifyResult = _verifyResult; -+ (instancetype)exceptionWithHost: (OFString*)host ++ (instancetype)exceptionWithHost: (OFString *)host port: (uint16_t)port - socket: (SSLSocket*)socket + socket: (SSLSocket *)socket SSLError: (unsigned long)SSLError { return [[[self alloc] initWithHost: host port: port socket: socket SSLError: SSLError] autorelease]; } -+ (instancetype)exceptionWithHost: (OFString*)host ++ (instancetype)exceptionWithHost: (OFString *)host port: (uint16_t)port - socket: (SSLSocket*)socket + socket: (SSLSocket *)socket SSLError: (unsigned long)SSLError verifyResult: (long)verifyResult { return [[[self alloc] initWithHost: host port: port @@ -65,13 +65,13 @@ socket: socket SSLError: SSLError verifyResult: verifyResult] autorelease]; } -- initWithHost: (OFString*)host +- initWithHost: (OFString *)host port: (uint16_t)port - socket: (SSLSocket*)socket + socket: (SSLSocket *)socket SSLError: (unsigned long)SSLError { self = [super initWithHost: host port: port socket: socket]; @@ -79,13 +79,13 @@ _SSLError = SSLError; return self; } -- initWithHost: (OFString*)host +- initWithHost: (OFString *)host port: (uint16_t)port - socket: (SSLSocket*)socket + socket: (SSLSocket *)socket SSLError: (unsigned long)SSLError verifyResult: (long)verifyResult { self = [super initWithHost: host port: port @@ -95,11 +95,11 @@ _verifyResult = verifyResult; return self; } -- (OFString*)description +- (OFString *)description { if (_SSLError != SSL_ERROR_NONE) { char error[512]; ERR_error_string_n(_SSLError, error, 512);