lib549.c
Go to the documentation of this file.
00001 /***************************************************************************
00002  *                                  _   _ ____  _
00003  *  Project                     ___| | | |  _ \| |
00004  *                             / __| | | | |_) | |
00005  *                            | (__| |_| |  _ <| |___
00006  *                             \___|\___/|_| \_\_____|
00007  *
00008  * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
00009  *
00010  * This software is licensed as described in the file COPYING, which
00011  * you should have received as part of this distribution. The terms
00012  * are also available at https://curl.haxx.se/docs/copyright.html.
00013  *
00014  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
00015  * copies of the Software, and permit persons to whom the Software is
00016  * furnished to do so, under the terms of the COPYING file.
00017  *
00018  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
00019  * KIND, either express or implied.
00020  *
00021  ***************************************************************************/
00022 /* argv1 = URL
00023  * argv2 = proxy
00024  * argv3 = non-zero means ASCII transfer
00025  */
00026 
00027 #include "test.h"
00028 
00029 #include "memdebug.h"
00030 
00031 int test(char *URL)
00032 {
00033   CURLcode res;
00034   CURL *curl;
00035 
00036   if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) {
00037     fprintf(stderr, "curl_global_init() failed\n");
00038     return TEST_ERR_MAJOR_BAD;
00039   }
00040 
00041   curl = curl_easy_init();
00042   if(!curl) {
00043     fprintf(stderr, "curl_easy_init() failed\n");
00044     curl_global_cleanup();
00045     return TEST_ERR_MAJOR_BAD;
00046   }
00047 
00048   test_setopt(curl, CURLOPT_PROXY, libtest_arg2);
00049   test_setopt(curl, CURLOPT_URL, URL);
00050   test_setopt(curl, CURLOPT_PROXY_TRANSFER_MODE, 1L);
00051   test_setopt(curl, CURLOPT_VERBOSE, 1L);
00052   if(libtest_arg3) {
00053     /* enable ascii/text mode */
00054     test_setopt(curl, CURLOPT_TRANSFERTEXT, 1L);
00055   }
00056 
00057   res = curl_easy_perform(curl);
00058 
00059 test_cleanup:
00060 
00061   curl_easy_cleanup(curl);
00062   curl_global_cleanup();
00063 
00064   return (int)res;
00065 }
00066 


rc_visard_driver
Author(s): Heiko Hirschmueller , Christian Emmerich , Felix Ruess
autogenerated on Thu Jun 6 2019 20:43:05