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
00032 struct curl_slist *hhl = NULL;
00033 struct curl_slist *phl = NULL;
00034
00035 if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) {
00036 fprintf(stderr, "curl_global_init() failed\n");
00037 return TEST_ERR_MAJOR_BAD;
00038 }
00039
00040 curl = curl_easy_init();
00041 if(!curl) {
00042 fprintf(stderr, "curl_easy_init() failed\n");
00043 curl_global_cleanup();
00044 return TEST_ERR_MAJOR_BAD;
00045 }
00046
00047 hhl = curl_slist_append(hhl, "User-Agent: Http Agent");
00048 phl = curl_slist_append(phl, "Proxy-User-Agent: Http Agent2");
00049
00050 if(!hhl) {
00051 goto test_cleanup;
00052 }
00053
00054 test_setopt(curl, CURLOPT_URL, URL);
00055 test_setopt(curl, CURLOPT_PROXY, libtest_arg2);
00056 test_setopt(curl, CURLOPT_HTTPHEADER, hhl);
00057 test_setopt(curl, CURLOPT_PROXYHEADER, phl);
00058 test_setopt(curl, CURLOPT_HEADEROPT, CURLHEADER_SEPARATE);
00059 test_setopt(curl, CURLOPT_VERBOSE, 1L);
00060 test_setopt(curl, CURLOPT_PROXYTYPE, CURLPROXY_HTTP);
00061 test_setopt(curl, CURLOPT_HEADER, 1L);
00062
00063 res = curl_easy_perform(curl);
00064
00065 test_cleanup:
00066
00067 curl_easy_cleanup(curl);
00068 curl_slist_free_all(hhl);
00069 curl_slist_free_all(phl);
00070 curl_global_cleanup();
00071
00072 return (int)res;
00073 }