From 662cb303729cfb4f875ee3ed9486122e193cc16c Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 19 May 2004 09:08:19 +0000 Subject: [PATCH] Set CURLOPT_USERAGENT too --- docs/examples/getinmemory.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/examples/getinmemory.c b/docs/examples/getinmemory.c index f7e2746..c1b6e12 100644 --- a/docs/examples/getinmemory.c +++ b/docs/examples/getinmemory.c @@ -62,6 +62,10 @@ int main(int argc, char **argv) /* we pass our 'chunk' struct to the callback function */ curl_easy_setopt(curl_handle, CURLOPT_WRITEDATA, (void *)&chunk); + /* some servers don't like requests that are made withput a user-agent + field, so we provide one */ + curl_easy_setopt(curl_handle, CURLOPT_USERAGENT, "libcurl-agent/1.0"); + /* get it! */ curl_easy_perform(curl_handle); -- 2.7.4