comparison Core/HttpClient.cpp @ 707:203157cb4fde

unit tests of httpclient
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 13 Feb 2014 14:37:35 +0100
parents 2d0a347e8cfc
children a811bdf8b8eb
comparison
equal deleted inserted replaced
706:2d829ea1db96 707:203157cb4fde
252 252
253 void HttpClient::GlobalFinalize() 253 void HttpClient::GlobalFinalize()
254 { 254 {
255 curl_global_cleanup(); 255 curl_global_cleanup();
256 } 256 }
257
258 const char* HttpClient::GetLastStatusText() const
259 {
260 return EnumerationToString(lastStatus_);
261 }
262 } 257 }