57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
-
+
-
-
+
+
|
[_response release];
[super dealloc];
}
- (OFString *)description
{
const char *method = OFHTTPRequestMethodName(_request.method);
OFString *method = OFHTTPRequestMethodString(_request.method);
return [OFString stringWithFormat:
@"An HTTP %s request with URI %@ failed with code %hd!", method,
_request.URI, _response.statusCode];
@"An HTTP %@ request with IRI %@ failed with code %hd!", method,
_request.IRI, _response.statusCode];
}
@end
|