diff options
Diffstat (limited to 'libwardrobe')
-rw-r--r-- | libwardrobe/src/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libwardrobe/src/main.c b/libwardrobe/src/main.c index 897a596..cfe9395 100644 --- a/libwardrobe/src/main.c +++ b/libwardrobe/src/main.c @@ -28,6 +28,7 @@ THE SOFTWARE. #include "wardrobe.h" #include "md5.h" +#include "config.h" #define WARDROBE_HTTP_BUFFER_SIZE 10000 @@ -105,6 +106,8 @@ void WardrobeHttpPost (CURL *ch, char *url, char *postData, char **retData) { void WardrobeInit (WardrobeHandle_t *wh) { memset (wh, 0, sizeof (*wh)); wh->ch = curl_easy_init (); + curl_easy_setopt (wh->ch, CURLOPT_USERAGENT, PACKAGE_STRING); + curl_easy_setopt (wh->ch, CURLOPT_CONNECTTIMEOUT, 60); } /* free () replacement that does some checks and zeros memory |