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 #include "test.h"
00023
00024 #ifdef HAVE_FCNTL_H
00025 #include <fcntl.h>
00026 #endif
00027
00028 #include "memdebug.h"
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 int test(char *URL)
00039 {
00040 CURL *curl;
00041 CURLcode res = CURLE_OK;
00042
00043 if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) {
00044 fprintf(stderr, "curl_global_init() failed\n");
00045 return TEST_ERR_MAJOR_BAD;
00046 }
00047
00048
00049 curl = curl_easy_init();
00050 if(!curl) {
00051 fprintf(stderr, "curl_easy_init() failed\n");
00052 curl_global_cleanup();
00053 return TEST_ERR_MAJOR_BAD;
00054 }
00055
00056
00057 test_setopt(curl, CURLOPT_VERBOSE, 1L);
00058
00059
00060 test_setopt(curl, CURLOPT_PORT, strtol(libtest_arg2, NULL, 10));
00061
00062
00063 test_setopt(curl, CURLOPT_URL, URL);
00064
00065
00066 res = curl_easy_perform(curl);
00067
00068 test_cleanup:
00069
00070 curl_easy_cleanup(curl);
00071 curl_global_cleanup();
00072
00073 return res;
00074 }