summaryrefslogtreecommitdiffabout
path: root/include/opkele/curl.h
Unidiff
Diffstat (limited to 'include/opkele/curl.h') (more/less context) (show whitespace changes)
-rw-r--r--include/opkele/curl.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/opkele/curl.h b/include/opkele/curl.h
index 1029b34..298f095 100644
--- a/include/opkele/curl.h
+++ b/include/opkele/curl.h
@@ -12,31 +12,37 @@ namespace opkele {
12 public: 12 public:
13 CURL *_c; 13 CURL *_c;
14 14
15 curl_t() : _c(0) { } 15 curl_t() : _c(0) { }
16 curl_t(CURL *c) : _c(c) { } 16 curl_t(CURL *c) : _c(c) { }
17 virtual ~curl_t() throw(); 17 virtual ~curl_t() throw();
18 18
19 curl_t& operator=(CURL *c); 19 curl_t& operator=(CURL *c);
20 20
21 operator const CURL*(void) const { return _c; } 21 operator const CURL*(void) const { return _c; }
22 operator CURL*(void) { return _c; } 22 operator CURL*(void) { return _c; }
23 23
24 CURLcode misc_sets(); 24 CURLcode misc_sets();
25 25
26 template<typename PT> 26 template<typename PT>
27 inline CURLcode easy_setopt(CURLoption o,PT p) { assert(_c); return curl_easy_setopt(_c,o,p); } 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); } 28 CURLcode easy_perform() { assert(_c); return curl_easy_perform(_c); }
29 template<typename IT> 29 template<typename IT>
30 inline CURLcode easy_getinfo(CURLINFO i,IT p) { assert(_c); return curl_easy_getinfo(_c,i,p); } 30 inline CURLcode easy_getinfo(CURLINFO i,IT p) { assert(_c); return curl_easy_getinfo(_c,i,p); }
31 31
32 static inline CURL *easy_init() { return curl_easy_init(); } 32 static inline CURL *easy_init() { return curl_easy_init(); }
33 33
34 virtual size_t write(void *p,size_t s,size_t nm) { return 0; } 34 virtual size_t write(void *p,size_t s,size_t nm) { return 0; }
35 CURLcode set_write(); 35 CURLcode set_write();
36
37 virtual int progress(double dlt,double dln,double ult,double uln) { return 0; }
38 CURLcode set_progress();
39
40 virtual size_t header(void *p,size_t s,size_t nm) { return s*nm; }
41 CURLcode set_header();
36 }; 42 };
37 43
38 } 44 }
39 45
40} 46}
41 47
42#endif /* __OPKELE_CURL_H */ 48#endif /* __OPKELE_CURL_H */