mirror of
https://github.com/curl/curl.git
synced 2026-06-19 00:55:37 +03:00
- `N byte` -> `N-byte` or `N bytes`. - INTERNALS.md: language tweaks. - schannel: language tweak in comment/error message. - socks_gssapi, socks_sspi: simplify composing an error message. (at a cost of 8 extra constant string bytes.) - m4/curl-compilers.m4: fix typo in link (in comment). - contrithanks.sh: fix indent, drop stray `;` terminator. - lib, src, tests: drop/fix a bunch of badwords. - fix typos in comments. - fix indent, stray spaces. Some of these spotted by GitHub Code Quality and Copilot Closes #22009
60 lines
1.8 KiB
C
60 lines
1.8 KiB
C
/***************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
*
|
|
* This software is licensed as described in the file COPYING, which
|
|
* you should have received as part of this distribution. The terms
|
|
* are also available at https://curl.se/docs/copyright.html.
|
|
*
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
* SPDX-License-Identifier: curl
|
|
*
|
|
***************************************************************************/
|
|
#include "first.h"
|
|
|
|
static CURLcode test_lib1557(const char *URL)
|
|
{
|
|
CURLM *multi = NULL;
|
|
CURL *curl1 = NULL;
|
|
CURL *curl2 = NULL;
|
|
int running_handles = 0;
|
|
CURLcode result = CURLE_OK;
|
|
|
|
global_init(CURL_GLOBAL_ALL);
|
|
|
|
multi_init(multi);
|
|
multi_setopt(multi, CURLMOPT_MAX_HOST_CONNECTIONS, 1L);
|
|
|
|
easy_init(curl1);
|
|
easy_setopt(curl1, CURLOPT_URL, URL);
|
|
multi_add_handle(multi, curl1);
|
|
|
|
easy_init(curl2);
|
|
easy_setopt(curl2, CURLOPT_URL, URL);
|
|
multi_add_handle(multi, curl2);
|
|
|
|
multi_perform(multi, &running_handles);
|
|
|
|
multi_remove_handle(multi, curl2);
|
|
|
|
/* If curl2 is still in the connect-pending list, this crashes */
|
|
multi_remove_handle(multi, curl1);
|
|
|
|
test_cleanup:
|
|
curl_easy_cleanup(curl1);
|
|
curl_easy_cleanup(curl2);
|
|
curl_multi_cleanup(multi);
|
|
curl_global_cleanup();
|
|
return result;
|
|
}
|