delegation.d 686 B

123456789101112131415161718192021222324
  1. c: Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
  2. SPDX-License-Identifier: curl
  3. Long: delegation
  4. Arg: <LEVEL>
  5. Help: GSS-API delegation permission
  6. Protocols: GSS/kerberos
  7. Category: auth
  8. Example: --delegation "none" $URL
  9. Added: 7.22.0
  10. See-also: insecure ssl
  11. ---
  12. Set LEVEL to tell the server what it is allowed to delegate when it
  13. comes to user credentials.
  14. .RS
  15. .IP "none"
  16. Do not allow any delegation.
  17. .IP "policy"
  18. Delegates if and only if the OK-AS-DELEGATE flag is set in the Kerberos
  19. service ticket, which is a matter of realm policy.
  20. .IP "always"
  21. Unconditionally allow the server to delegate.
  22. .RE
  23. If this option is used several times, the last one will be used.