no-sessionid.d 674 B

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