From 0d19bbaa23b7bd07ec4f5e3683ffdd8df4641bc9 Mon Sep 17 00:00:00 2001 From: Michael Krelin Date: Fri, 07 Mar 2008 19:45:26 +0000 Subject: added a helper to prepare curl request based on http_request_t * added curl_slist to http_request_t structure * added http_request_t::setup_curl(CURL*) Signed-off-by: Michael Krelin --- (limited to 'include/opkele/oauth') diff --git a/include/opkele/oauth/consumer.h b/include/opkele/oauth/consumer.h index 1e2784c..9196297 100644 --- a/include/opkele/oauth/consumer.h +++ b/include/opkele/oauth/consumer.h @@ -4,6 +4,7 @@ #include #include #include +#include namespace opkele { namespace oauth { @@ -41,8 +42,12 @@ namespace opkele { string url; string body; + util::curl_slist_t _curl_headers_list; + http_request_t(const string& m,const string& u) : method(m), url(u) { } + + void setup_curl(CURL *curl); }; class basic_consumer { -- cgit v0.9.0.2