My attempt to optimize my emacs load time <1 second
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.6 KiB

  1. ;;; url-http-ntlm-autoloads.el --- automatically extracted autoloads
  2. ;;
  3. ;;; Code:
  4. ;;;### (autoloads nil "url-http-ntlm" "url-http-ntlm.el" (0 0 0 0))
  5. ;;; Generated autoloads from url-http-ntlm.el
  6. (autoload 'url-ntlm-auth "url-http-ntlm" "\
  7. Return an NTLM HTTP authorization header.
  8. Get the contents of the Authorization header for a HTTP response
  9. using NTLM authentication, to access URL. Because NTLM is a
  10. two-step process, this function expects to be called twice, first
  11. to generate the NTLM type 1 message (request), then to respond to
  12. the server's type 2 message (challenge) with a suitable response.
  13. url-get-authentication' calls `url-ntlm-auth' once when checking
  14. what authentication schemes are supported (PROMPT and ARGS are
  15. nil), and then twice for every stage of the handshake: the first
  16. time PROMPT is nil, the second, t; ARGS contains the server
  17. response's \"WWW-Authenticate\" header, munged by
  18. `url-parse-args'.
  19. If PROMPT is not t then this function just returns nil. This is
  20. to avoid calculating responses twice.
  21. OVERWRITE and REALM are ignored.
  22. ARGS is expected to contain the WWW-Authentication header from
  23. the server's last response. These are used by
  24. `url-http-get-stage' to determine what stage we are at.
  25. \(fn URL &optional PROMPT OVERWRITE REALM ARGS)" nil nil)
  26. (url-register-auth-scheme "ntlm" nil 8)
  27. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "url-http-ntlm" '("url-http-ntlm--")))
  28. ;;;***
  29. (provide 'url-http-ntlm-autoloads)
  30. ;; Local Variables:
  31. ;; version-control: never
  32. ;; no-byte-compile: t
  33. ;; no-update-autoloads: t
  34. ;; coding: utf-8
  35. ;; End:
  36. ;;; url-http-ntlm-autoloads.el ends here