no-sessionid.md (707B)
1 --- 2 c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. 3 SPDX-License-Identifier: curl 4 Long: no-sessionid 5 Help: Disable SSL session-ID reusing 6 Protocols: TLS 7 Added: 7.16.0 8 Category: tls 9 Multi: boolean 10 See-also: 11 - insecure 12 Example: 13 - --no-sessionid $URL 14 --- 15 16 # `--no-sessionid` 17 18 Disable curl's use of SSL session-ID caching. By default all transfers are 19 done using the cache. Note that while nothing should ever get hurt by 20 attempting to reuse SSL session-IDs, there seem to be broken SSL 21 implementations in the wild that may require you to disable this in order for 22 you to succeed. 23 24 Note that this is the negated option name documented. You can thus use 25 --sessionid to enforce session-ID caching.