Differences From Artifact [67ed2116e0]:
- File src/OFHTTPRequest.m — part of check-in [e40729d406] at 2013-02-12 18:22:15 on branch trunk — Prefix all ivars with an underscore. (user: js, size: 4811) [annotate] [blame] [check-ins using]
To Artifact [24712e6afd]:
- File
src/OFHTTPRequest.m
— part of check-in
[c5ef582958]
at
2013-03-04 17:20:15
on branch trunk
— Replace BOOL with bool.
The only places where BOOL is left are those where they are required by
the ABI. (user: js, size: 4821) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
75 76 77 78 79 80 81 | [_remoteAddress release]; [super dealloc]; } - (void)setURL: (OFURL*)URL { | | | | 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | [_remoteAddress release]; [super dealloc]; } - (void)setURL: (OFURL*)URL { OF_SETTER(_URL, URL, true, 1) } - (OFURL*)URL { OF_GETTER(_URL, true) } - (void)setRequestType: (of_http_request_type_t)requestType { _requestType = requestType; } |
︙ | ︙ | |||
143 144 145 146 147 148 149 | { return [OFString stringWithFormat: @"%u.%u", _protocolVersion.major, _protocolVersion.minor]; } - (void)setHeaders: (OFDictionary*)headers { | | | | | | | | | | 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 | { return [OFString stringWithFormat: @"%u.%u", _protocolVersion.major, _protocolVersion.minor]; } - (void)setHeaders: (OFDictionary*)headers { OF_SETTER(_headers, headers, true, 1) } - (OFDictionary*)headers { OF_GETTER(_headers, true) } - (void)setPOSTData: (OFDataArray*)POSTData { OF_SETTER(_POSTData, POSTData, true, 0) } - (OFDataArray*)POSTData { OF_GETTER(_POSTData, true) } - (void)setMIMEType: (OFString*)MIMEType { OF_SETTER(_MIMEType, MIMEType, true, 1) } - (OFString*)MIMEType { OF_GETTER(_MIMEType, true) } - (void)setRemoteAddress: (OFString*)remoteAddress { OF_SETTER(_remoteAddress, remoteAddress, true, 1) } - (OFString*)remoteAddress { OF_GETTER(_remoteAddress, true) } - (OFString*)description { void *pool = objc_autoreleasePoolPush(); const char *requestTypeStr = NULL; OFString *indentedHeaders, *indentedPOSTData, *ret; |
︙ | ︙ |