summaryrefslogtreecommitdiffabout
path: root/lib/curl.cc
authorMichael Krelin <hacker@klever.net>2007-11-24 13:33:53 (UTC)
committer Michael Krelin <hacker@klever.net>2007-11-24 13:34:30 (UTC)
commitd788db9c490575e63506ce502a2f089eaaa624ee (patch) (side-by-side diff)
treeb102c7469fe3b20fc37cf0b27977049a1d55b75f /lib/curl.cc
parent986274e9f9a8e2ef0f92b08d2d2c9485bd19adec (diff)
downloadlibopkele-d788db9c490575e63506ce502a2f089eaaa624ee.zip
libopkele-d788db9c490575e63506ce502a2f089eaaa624ee.tar.gz
libopkele-d788db9c490575e63506ce502a2f089eaaa624ee.tar.bz2
more curl wrapper cosmetics
Signed-off-by: Michael Krelin <hacker@klever.net>
Diffstat (limited to 'lib/curl.cc') (more/less context) (ignore whitespace changes)
-rw-r--r--lib/curl.cc42
1 files changed, 42 insertions, 0 deletions
diff --git a/lib/curl.cc b/lib/curl.cc
new file mode 100644
index 0000000..418aa79
--- a/dev/null
+++ b/lib/curl.cc
@@ -0,0 +1,42 @@
+#include <opkele/curl.h>
+
+#include "config.h"
+
+namespace opkele {
+
+ namespace util {
+
+ curl_t::~curl_t() throw() {
+ if(_c)
+ curl_easy_cleanup(_c);
+ }
+
+ curl_t& curl_t::operator=(CURL *c) {
+ if(_c)
+ curl_easy_cleanup(_c);
+ _c = c;
+ return *this;
+ }
+
+ CURLcode curl_t::misc_sets() {
+ assert(_c);
+ CURLcode r;
+ (r=easy_setopt(CURLOPT_FOLLOWLOCATION,1))
+ || (r=easy_setopt(CURLOPT_MAXREDIRS,5))
+ || (r=easy_setopt(CURLOPT_DNS_CACHE_TIMEOUT,120))
+ || (r=easy_setopt(CURLOPT_DNS_USE_GLOBAL_CACHE,1))
+ || (r=easy_setopt(CURLOPT_USERAGENT,PACKAGE_NAME"/"PACKAGE_SRC_VERSION))
+ || (r=easy_setopt(CURLOPT_TIMEOUT,20))
+#ifdef DISABLE_CURL_SSL_VERIFYHOST
+ || (r=easy_setopt(CURLOPT_SSL_VERIFYHOST,0))
+#endif
+#ifdef DISABLE_CURL_SSL_VERIFYPEER
+ || (r=easy_setopt(CURLOPT_SSL_VERIFYPEER,0))
+#endif
+ ;
+ return r;
+ }
+
+ }
+
+}