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 #include "memdebug.h"
00025
00026
00027
00028
00029 int test(char *URL)
00030 {
00031 CURLcode res;
00032 CURL *curl;
00033 struct curl_slist *custom_headers=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
00048 test_setopt(curl, CURLOPT_HEADERDATA, stdout);
00049 test_setopt(curl, CURLOPT_WRITEDATA, stdout);
00050
00051 test_setopt(curl, CURLOPT_URL, URL);
00052 test_setopt(curl, CURLOPT_RTSP_STREAM_URI, URL);
00053 test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_OPTIONS);
00054 test_setopt(curl, CURLOPT_USERAGENT, "test567");
00055
00056 custom_headers = curl_slist_append(custom_headers, "Test-Number: 567");
00057 test_setopt(curl, CURLOPT_RTSPHEADER, custom_headers);
00058
00059 res = curl_easy_perform(curl);
00060
00061 test_cleanup:
00062
00063 if(custom_headers)
00064 curl_slist_free_all(custom_headers);
00065 curl_easy_cleanup(curl);
00066 curl_global_cleanup();
00067
00068 return (int)res;
00069 }
00070