author | Michael Krelin <hacker@klever.net> | 2007-11-24 13:33:53 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-11-24 13:34:30 (UTC) |
commit | d788db9c490575e63506ce502a2f089eaaa624ee (patch) (side-by-side diff) | |
tree | b102c7469fe3b20fc37cf0b27977049a1d55b75f /include/opkele/curl.h | |
parent | 986274e9f9a8e2ef0f92b08d2d2c9485bd19adec (diff) | |
download | libopkele-d788db9c490575e63506ce502a2f089eaaa624ee.zip libopkele-d788db9c490575e63506ce502a2f089eaaa624ee.tar.gz libopkele-d788db9c490575e63506ce502a2f089eaaa624ee.tar.bz2 |
more curl wrapper cosmetics
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | include/opkele/curl.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/include/opkele/curl.h b/include/opkele/curl.h index 8794ece..6a7d084 100644 --- a/include/opkele/curl.h +++ b/include/opkele/curl.h @@ -2,4 +2,5 @@ #define __OPKELE_CURL_H +#include <cassert> #include <curl/curl.h> @@ -14,10 +15,20 @@ namespace opkele { curl_t() : _c(0) { } curl_t(CURL *c) : _c(c) { } - ~curl_t() throw() { if(_c) curl_easy_cleanup(_c); } + virtual ~curl_t() throw(); - curl_t& operator=(CURL *c) { if(_c) curl_easy_cleanup(_c); _c=c; return *this; } + curl_t& operator=(CURL *c); operator const CURL*(void) const { return _c; } operator CURL*(void) { return _c; } + + CURLcode misc_sets(); + + template<typename PT> + inline CURLcode easy_setopt(CURLoption o,PT p) { assert(_c); return curl_easy_setopt(_c,o,p); } + CURLcode easy_perform() { assert(_c); return curl_easy_perform(_c); } + template<typename IT> + inline CURLcode easy_getinfo(CURLINFO i,IT p) { assert(_c); return curl_easy_getinfo(_c,i,p); } + + static inline CURL *easy_init() { return curl_easy_init(); } }; |