| 1231 | } |
| 1232 | |
| 1233 | SC::Result SC::HttpClient::close() |
| 1234 | { |
| 1235 | if (not initialized) |
| 1236 | { |
| 1237 | return Result(true); |
| 1238 | } |
| 1239 | SC_TRY(platformClose()); |
| 1240 | initialized = false; |
| 1241 | return Result(true); |
| 1242 | } |
| 1243 | |
| 1244 | SC::Result SC::HttpClientOperation::init(HttpClient& clientValue, const HttpClientOperationMemory& memory) |
| 1245 | { |
no test coverage detected