diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-02-09 15:28:03 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-02-09 22:41:49 +0100 |
commit | 02f8de65165ef161a21ace25da3652e1fb13b99b (patch) | |
tree | c85885a4640afecf17d6e92e4df12f887619824c /docs | |
parent | f8f4a9446550f2da7f1dc1892f780aacc7115ec3 (diff) | |
download | curl-02f8de65165ef161a21ace25da3652e1fb13b99b.tar.gz |
altsvc: keep a copy of the file name to survive handle reset
The alt-svc cache survives a call to curl_easy_reset fine, but the file
name to use for saving the cache was cleared. Now the alt-svc cache has
a copy of the file name to survive handle resets.
Added test 1908 to verify.
Reported-by: Craig Andrews
Fixes #4898
Closes #4902
Diffstat (limited to 'docs')
-rw-r--r-- | docs/libcurl/curl_easy_reset.3 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/libcurl/curl_easy_reset.3 b/docs/libcurl/curl_easy_reset.3 index 539f9c716..3c844c7dd 100644 --- a/docs/libcurl/curl_easy_reset.3 +++ b/docs/libcurl/curl_easy_reset.3 @@ -5,7 +5,7 @@ .\" * | (__| |_| | _ <| |___ .\" * \___|\___/|_| \_\_____| .\" * -.\" * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al. +.\" * Copyright (C) 1998 - 2020, 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 @@ -33,7 +33,8 @@ default values. This puts back the handle to the same state as it was in when it was just created with \fIcurl_easy_init(3)\fP. It does not change the following information kept in the handle: live -connections, the Session ID cache, the DNS cache, the cookies and shares. +connections, the Session ID cache, the DNS cache, the cookies, the shares or +the alt-svc cache. .SH AVAILABILITY This function was added in libcurl 7.12.1 .SH RETURN VALUE |