Resync
[CMakeLuaTailorHgBridge.git] / CMakeLua / Utilities / cmcurl-7.19.0 / tests / libtest / lib519.c
blob6629314cc113c2be686f1b37b6fb3d9a6a26ab7d
1 /*****************************************************************************
2 * _ _ ____ _
3 * Project ___| | | | _ \| |
4 * / __| | | | |_) | |
5 * | (__| |_| | _ <| |___
6 * \___|\___/|_| \_\_____|
8 * $Id: lib519.c,v 1.1.1.1 2008-09-23 16:32:06 hoffman Exp $
9 */
11 #include "test.h"
13 int test(char *URL)
15 CURLcode res;
16 CURL *curl;
18 if (curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) {
19 fprintf(stderr, "curl_global_init() failed\n");
20 return TEST_ERR_MAJOR_BAD;
23 if ((curl = curl_easy_init()) == NULL) {
24 fprintf(stderr, "curl_easy_init() failed\n");
25 curl_global_cleanup();
26 return TEST_ERR_MAJOR_BAD;
29 curl_easy_setopt(curl, CURLOPT_URL, URL);
30 curl_easy_setopt(curl, CURLOPT_USERPWD, "monster:underbed");
31 curl_easy_setopt(curl, CURLOPT_HEADER, 1L);
32 curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
34 /* get first page */
35 res = curl_easy_perform(curl);
37 curl_easy_setopt(curl, CURLOPT_USERPWD, "anothermonster:inwardrobe");
39 /* get second page */
40 res = curl_easy_perform(curl);
42 curl_easy_cleanup(curl);
43 curl_global_cleanup();
45 return (int)res;