no-sessionid.d 672 B

123456789101112131415161718
  1. c: Copyright (C) 1998 - 2022, Daniel Stenberg, <[email protected]>, 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. ---
  11. Disable curl's use of SSL session-ID caching. By default all transfers are
  12. done using the cache. Note that while nothing should ever get hurt by
  13. attempting to reuse SSL session-IDs, there seem to be broken SSL
  14. implementations in the wild that may require you to disable this in order for
  15. you to succeed.
  16. Note that this is the negated option name documented. You can thus use
  17. --sessionid to enforce session-ID caching.