From 7d8cda044fa3b428eb53ec2bfbeaa2e223114554 Mon Sep 17 00:00:00 2001 From: Michael Krelin Date: Sun, 16 Dec 2007 00:36:30 +0000 Subject: moved curl_fetch_string_t/curl_pick_t classes into curl.h Signed-off-by: Michael Krelin --- (limited to 'include') diff --git a/include/opkele/curl.h b/include/opkele/curl.h index 8020b63..5cf8e48 100644 --- a/include/opkele/curl.h +++ b/include/opkele/curl.h @@ -2,9 +2,13 @@ #define __OPKELE_CURL_H #include +#include +#include #include namespace opkele { + using std::min; + using std::string; namespace util { @@ -41,6 +45,26 @@ namespace opkele { CURLcode set_header(); }; + template + class curl_fetch_string_t : public curl_t { + public: + curl_fetch_string_t(CURL *c) + : curl_t(c) { } + ~curl_fetch_string_t() throw() { } + + string response; + + size_t write(void *p,size_t size,size_t nmemb) { + size_t bytes = size*nmemb; + size_t get = min(lim-response.length(),bytes); + response.append((const char *)p,get); + return get; + } + }; + + typedef curl_fetch_string_t<16384> curl_pick_t; + + } } -- cgit v0.9.0.2