CURLOPT_USERPWD.3 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. .\" *
  10. .\" * This software is licensed as described in the file COPYING, which
  11. .\" * you should have received as part of this distribution. The terms
  12. .\" * are also available at http://curl.haxx.se/docs/copyright.html.
  13. .\" *
  14. .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. .\" * copies of the Software, and permit persons to whom the Software is
  16. .\" * furnished to do so, under the terms of the COPYING file.
  17. .\" *
  18. .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. .\" * KIND, either express or implied.
  20. .\" *
  21. .\" **************************************************************************
  22. .\"
  23. .TH CURLOPT_USERPWD 3 "17 Jun 2014" "libcurl 7.37.0" "curl_easy_setopt options"
  24. .SH NAME
  25. CURLOPT_USERPWD \- set user + password to work with
  26. .SH SYNOPSIS
  27. #include <curl/curl.h>
  28. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_USERPWD, char *userpwd);
  29. .SH DESCRIPTION
  30. Pass a char * as parameter, pointing to a zero terminated login details string
  31. for the connection. The format of which is: [user name]:[password].
  32. When using NTLM, you can set the domain by prepending it to the user name and
  33. separating the domain and name with a forward (/) or backward slash (\\). Like
  34. this: "domain/user:password" or "domain\\user:password". Some HTTP servers (on
  35. Windows) support this style even for Basic authentication.
  36. When using HTTP and \fICURLOPT_FOLLOWLOCATION(3)\fP, libcurl might perform
  37. several requests to possibly different hosts. libcurl will only send this user
  38. and password information to hosts using the initial host name (unless
  39. \fICURLOPT_UNRESTRICTED_AUTH(3)\fP is set), so if libcurl follows locations to
  40. other hosts it will not send the user and password to those. This is enforced
  41. to prevent accidental information leakage.
  42. Use \fICURLOPT_HTTPAUTH(3)\fP to specify the authentication method for HTTP
  43. based connections or \fICURLOPT_LOGIN_OPTIONS(3)\fP to control IMAP, POP3 and
  44. SMTP options.
  45. The user and password strings are not URL decoded, so there's no way to send
  46. in a user name containing a colon using this option. Use
  47. \fICURLOPT_USERNAME(3)\fP for that, or include it in the URL.
  48. .SH DEFAULT
  49. NULL
  50. .SH PROTOCOLS
  51. Most
  52. .SH EXAMPLE
  53. TODO
  54. .SH AVAILABILITY
  55. Always
  56. .SH RETURN VALUE
  57. Returns CURLE_OK on success or
  58. CURLE_OUT_OF_MEMORY if there was insufficient heap space.
  59. .SH "SEE ALSO"
  60. .BR CURLOPT_USERNAME "(3), " CURLOPT_PASSWORD "(3), "