author | Michael Krelin <hacker@klever.net> | 2008-03-07 19:45:26 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2008-03-07 19:45:26 (UTC) |
commit | 0d19bbaa23b7bd07ec4f5e3683ffdd8df4641bc9 (patch) (unidiff) | |
tree | 589401b7985fc8b6c9afeafe48a19569d65dcc4c /include | |
parent | f56409b28ff418a5317743ad01821609881cd664 (diff) | |
download | libopkele-0d19bbaa23b7bd07ec4f5e3683ffdd8df4641bc9.zip libopkele-0d19bbaa23b7bd07ec4f5e3683ffdd8df4641bc9.tar.gz libopkele-0d19bbaa23b7bd07ec4f5e3683ffdd8df4641bc9.tar.bz2 |
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 <hacker@klever.net>
-rw-r--r-- | include/opkele/oauth/consumer.h | 5 |
1 files changed, 5 insertions, 0 deletions
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 | |||
@@ -5,4 +5,5 @@ | |||
5 | #include <opkele/types.h> | 5 | #include <opkele/types.h> |
6 | #include <opkele/oauth.h> | 6 | #include <opkele/oauth.h> |
7 | #include <opkele/curl.h> | ||
7 | 8 | ||
8 | namespace opkele { | 9 | namespace opkele { |
@@ -42,6 +43,10 @@ namespace opkele { | |||
42 | string body; | 43 | string body; |
43 | 44 | ||
45 | util::curl_slist_t _curl_headers_list; | ||
46 | |||
44 | http_request_t(const string& m,const string& u) | 47 | http_request_t(const string& m,const string& u) |
45 | : method(m), url(u) { } | 48 | : method(m), url(u) { } |
49 | |||
50 | void setup_curl(CURL *curl); | ||
46 | }; | 51 | }; |
47 | 52 | ||