lib3208.c (2749B)
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 CURLcode test_lib3208(char *URL) 29 { 30 CURL *curl = NULL; 31 CURLM *multi = NULL; 32 int still_running; 33 CURLcode i = TEST_ERR_FAILURE; 34 CURLcode res = CURLE_OK; 35 CURLMsg *msg; 36 37 start_test_timing(); 38 39 global_init(CURL_GLOBAL_ALL); 40 41 multi_init(multi); 42 43 easy_init(curl); 44 45 easy_setopt(curl, CURLOPT_URL, URL); 46 easy_setopt(curl, CURLOPT_HEADER, 1L); 47 easy_setopt(curl, CURLOPT_VERBOSE, 1L); 48 /* no peer verify */ 49 easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L); 50 easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L); 51 52 /* first, make an easy perform with the handle */ 53 curl_easy_perform(curl); 54 55 /* then proceed and use it for a multi perform */ 56 multi_add_handle(multi, curl); 57 58 multi_perform(multi, &still_running); 59 60 abort_on_test_timeout(); 61 62 while(still_running) { 63 CURLMcode mres; 64 int num; 65 mres = curl_multi_wait(multi, NULL, 0, TEST_HANG_TIMEOUT, &num); 66 if(mres != CURLM_OK) { 67 curl_mprintf("curl_multi_wait() returned %d\n", mres); 68 res = TEST_ERR_MAJOR_BAD; 69 goto test_cleanup; 70 } 71 72 abort_on_test_timeout(); 73 74 multi_perform(multi, &still_running); 75 76 abort_on_test_timeout(); 77 } 78 79 msg = curl_multi_info_read(multi, &still_running); 80 if(msg) 81 /* this should now contain a result code from the easy handle, 82 get it */ 83 i = msg->data.result; 84 85 curl_multi_remove_handle(multi, curl); 86 87 /* make a third transfer with the easy handle */ 88 curl_easy_perform(curl); 89 90 test_cleanup: 91 92 /* undocumented cleanup sequence - type UA */ 93 94 curl_multi_cleanup(multi); 95 curl_easy_cleanup(curl); 96 curl_global_cleanup(); 97 98 if(res) 99 i = res; 100 101 return i; /* return the final return code */ 102 }