| 1168 | } |
| 1169 | |
| 1170 | bool SC::HttpClientResponse::hasTransferCoding(HttpClientTransferCoding::Type type) const |
| 1171 | { |
| 1172 | HttpClientTransferCodingIterator iterator; |
| 1173 | HttpClientTransferCoding transferCoding; |
| 1174 | while (getNextTransferCoding(iterator, transferCoding)) |
| 1175 | { |
| 1176 | if (transferCoding.type == type) |
| 1177 | { |
| 1178 | return true; |
| 1179 | } |
| 1180 | } |
| 1181 | return false; |
| 1182 | } |
| 1183 | |
| 1184 | const char* SC::HttpClientResponse::getProtocolName(Protocol protocol) |
| 1185 | { |
no outgoing calls