summaryrefslogtreecommitdiffabout
path: root/include/opkele/curl.h
Unidiff
Diffstat (limited to 'include/opkele/curl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--include/opkele/curl.h15
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
@@ -1,6 +1,7 @@
1#ifndef __OPKELE_CURL_H 1#ifndef __OPKELE_CURL_H
2#define __OPKELE_CURL_H 2#define __OPKELE_CURL_H
3 3
4#include <cassert>
4#include <curl/curl.h> 5#include <curl/curl.h>
5 6
6namespace opkele { 7namespace opkele {
@@ -13,12 +14,22 @@ namespace opkele {
13 14
14 curl_t() : _c(0) { } 15 curl_t() : _c(0) { }
15 curl_t(CURL *c) : _c(c) { } 16 curl_t(CURL *c) : _c(c) { }
16 ~curl_t() throw() { if(_c) curl_easy_cleanup(_c); } 17 virtual ~curl_t() throw();
17 18
18 curl_t& operator=(CURL *c) { if(_c) curl_easy_cleanup(_c); _c=c; return *this; } 19 curl_t& operator=(CURL *c);
19 20
20 operator const CURL*(void) const { return _c; } 21 operator const CURL*(void) const { return _c; }
21 operator CURL*(void) { return _c; } 22 operator CURL*(void) { return _c; }
23
24 CURLcode misc_sets();
25
26 template<typename PT>
27 inline CURLcode easy_setopt(CURLoption o,PT p) { assert(_c); return curl_easy_setopt(_c,o,p); }
28 CURLcode easy_perform() { assert(_c); return curl_easy_perform(_c); }
29 template<typename IT>
30 inline CURLcode easy_getinfo(CURLINFO i,IT p) { assert(_c); return curl_easy_getinfo(_c,i,p); }
31
32 static inline CURL *easy_init() { return curl_easy_init(); }
22 }; 33 };
23 34
24 } 35 }