mirror of
https://github.com/curl/curl.git
synced 2026-04-11 12:01:42 +08:00
Avoid never-ending growth. When adding more entries, it now deletes the first entry in the list, which is the oldest added entry still held in memory. I decided to avoid a Least Recently Used concept as I suspect with a list with this many entries most entries have not been used, and we don't save the timestamp of recent use anyway. The net effect might (no matter what) be that the removed entry might feel a bit "random" in the eyes of the user. Verify with test 1669. Reported-by: Geeknik Labs Fixes #21183 Closes #21189
59 lines
1.9 KiB
C
59 lines
1.9 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 "unitcheck.h"
|
|
|
|
#include "urldata.h"
|
|
#include "altsvc.h"
|
|
|
|
static CURLcode test_unit1669(const char *arg)
|
|
{
|
|
UNITTEST_BEGIN_SIMPLE
|
|
|
|
#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_ALTSVC)
|
|
char outname[256];
|
|
CURL *curl;
|
|
CURLcode result;
|
|
struct altsvcinfo *asi = Curl_altsvc_init();
|
|
abort_if(!asi, "Curl_altsvc_init");
|
|
result = Curl_altsvc_load(asi, arg);
|
|
fail_if(result, "Curl_altsvc_load");
|
|
if(result)
|
|
goto fail;
|
|
curl_global_init(CURL_GLOBAL_ALL);
|
|
curl = curl_easy_init();
|
|
fail_if(!curl, "curl_easy_init");
|
|
if(!curl)
|
|
goto fail;
|
|
fail_unless(Curl_llist_count(&asi->list) == MAX_ALTSVC_ENTRIES,
|
|
"wrong number of entries");
|
|
curl_msnprintf(outname, sizeof(outname), "%s-out", arg);
|
|
|
|
curl_easy_cleanup(curl);
|
|
fail:
|
|
Curl_altsvc_cleanup(&asi);
|
|
#endif
|
|
|
|
UNITTEST_END(curl_global_cleanup())
|
|
}
|