Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #include "test.h"
00024
00025 #include "memdebug.h"
00026
00027 int test(char *URL)
00028 {
00029 CURL *curl = NULL;
00030 CURLcode res = CURLE_FAILED_INIT;
00031 char bURL[512];
00032 snprintf(bURL, sizeof(bURL), "%s HTTP/1.1\r\nGET http://1529.com/1529", URL);
00033
00034 if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) {
00035 fprintf(stderr, "curl_global_init() failed\n");
00036 return TEST_ERR_MAJOR_BAD;
00037 }
00038
00039 curl = curl_easy_init();
00040 if(!curl) {
00041 fprintf(stderr, "curl_easy_init() failed\n");
00042 curl_global_cleanup();
00043 return TEST_ERR_MAJOR_BAD;
00044 }
00045
00046 test_setopt(curl, CURLOPT_URL, bURL);
00047 test_setopt(curl, CURLOPT_PROXY, libtest_arg2);
00048 test_setopt(curl, CURLOPT_VERBOSE, 1L);
00049 test_setopt(curl, CURLOPT_PROXYTYPE, CURLPROXY_HTTP);
00050 test_setopt(curl, CURLOPT_HEADER, 1L);
00051
00052 res = curl_easy_perform(curl);
00053
00054 test_cleanup:
00055
00056 curl_easy_cleanup(curl);
00057 curl_global_cleanup();
00058
00059 return (int)res;
00060 }