quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

lib502.c (2173B)


      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 /*
     29  * Get a single URL without select().
     30  */
     31 
     32 static CURLcode test_lib502(char *URL)
     33 {
     34   CURL *c = NULL;
     35   CURLM *m = NULL;
     36   CURLcode res = CURLE_OK;
     37   int running;
     38 
     39   start_test_timing();
     40 
     41   global_init(CURL_GLOBAL_ALL);
     42 
     43   easy_init(c);
     44 
     45   easy_setopt(c, CURLOPT_URL, URL);
     46 
     47   multi_init(m);
     48 
     49   multi_add_handle(m, c);
     50 
     51   for(;;) {
     52     struct timeval timeout;
     53     fd_set fdread, fdwrite, fdexcep;
     54     int maxfd = -99;
     55 
     56     timeout.tv_sec = 0;
     57     timeout.tv_usec = 100000L; /* 100 ms */
     58 
     59     multi_perform(m, &running);
     60 
     61     abort_on_test_timeout();
     62 
     63     if(!running)
     64       break; /* done */
     65 
     66     FD_ZERO(&fdread);
     67     FD_ZERO(&fdwrite);
     68     FD_ZERO(&fdexcep);
     69 
     70     multi_fdset(m, &fdread, &fdwrite, &fdexcep, &maxfd);
     71 
     72     /* At this point, maxfd is guaranteed to be greater or equal than -1. */
     73 
     74     select_test(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);
     75 
     76     abort_on_test_timeout();
     77   }
     78 
     79 test_cleanup:
     80 
     81   /* proper cleanup sequence - type PA */
     82 
     83   curl_multi_remove_handle(m, c);
     84   curl_multi_cleanup(m);
     85   curl_easy_cleanup(c);
     86   curl_global_cleanup();
     87 
     88   return res;
     89 }