lib1530.c (2104B)
1 /*************************************************************************** 2 * _ _ ____ _ 3 * Project ___| | | | _ \| | 4 * / __| | | | |_) | | 5 * | (__| |_| | _ <| |___ 6 * \___|\___/|_| \_\_____| 7 * 8 * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. 9 * 10 * This software is licensed as described in the file COPYING, which 11 * you should have received as part of this distribution. The terms 12 * are also available at https://curl.se/docs/copyright.html. 13 * 14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell 15 * copies of the Software, and permit persons to whom the Software is 16 * furnished to do so, under the terms of the COPYING file. 17 * 18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * KIND, either express or implied. 20 * 21 * SPDX-License-Identifier: curl 22 * 23 ***************************************************************************/ 24 #include "first.h" 25 26 #include "memdebug.h" 27 28 static curl_socket_t opensocket(void *clientp, 29 curlsocktype purpose, 30 struct curl_sockaddr *address) 31 { 32 (void)purpose; 33 (void)address; 34 (void)clientp; 35 curl_mfprintf(stderr, "opensocket() returns CURL_SOCKET_BAD\n"); 36 return CURL_SOCKET_BAD; 37 } 38 39 static CURLcode test_lib1530(char *URL) 40 { 41 CURL *curl = NULL; 42 CURLcode res = CURLE_FAILED_INIT; 43 (void)URL; 44 45 if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { 46 curl_mfprintf(stderr, "curl_global_init() failed\n"); 47 return TEST_ERR_MAJOR_BAD; 48 } 49 50 curl = curl_easy_init(); 51 if(!curl) { 52 curl_mfprintf(stderr, "curl_easy_init() failed\n"); 53 curl_global_cleanup(); 54 return TEST_ERR_MAJOR_BAD; 55 } 56 57 test_setopt(curl, CURLOPT_URL, "http://99.99.99.99:9999"); 58 test_setopt(curl, CURLOPT_VERBOSE, 1L); 59 test_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, opensocket); 60 61 res = curl_easy_perform(curl); 62 63 test_cleanup: 64 65 curl_easy_cleanup(curl); 66 curl_global_cleanup(); 67 68 return res; 69 }