aboutsummaryrefslogtreecommitdiffstats
path: root/http-client/http_client.cc
diff options
context:
space:
mode:
Diffstat (limited to 'http-client/http_client.cc')
-rw-r--r--http-client/http_client.cc7
1 files changed, 2 insertions, 5 deletions
diff --git a/http-client/http_client.cc b/http-client/http_client.cc
index a2e9800b..221e7bbe 100644
--- a/http-client/http_client.cc
+++ b/http-client/http_client.cc
@@ -13,7 +13,6 @@
* limitations under the License.
*/
-#include "response.h"
#include "http_client.h"
#include <curl/curl.h>
@@ -21,11 +20,9 @@
#include <iostream>
using namespace std;
-using namespace icn_httpserver;
size_t write_data(void *ptr, size_t size, size_t nmemb, void *stream) {
- ((Response*) stream)->write((const char*)ptr, size * nmemb);
- ((Response*) stream)->send();
+ ((ostream*) stream)->write((const char*)ptr, size * nmemb);
return size * nmemb;
}
@@ -59,4 +56,4 @@ bool HTTPClient::download(const std::string& url, std::ostream& out) {
}
return true;
-}
+} \ No newline at end of file