CURLOPT_HTTPHEADER.3 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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_HTTPHEADER 3 "17 Jun 2014" "libcurl 7.37.0" "curl_easy_setopt options"
  24. .SH NAME
  25. CURLOPT_HTTPHEADER \- set custom HTTP headers
  26. .SH SYNOPSIS
  27. #include <curl/curl.h>
  28. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_HTTPHEADER, struct curl_slist *headers);
  29. .SH DESCRIPTION
  30. Pass a pointer to a linked list of HTTP headers to pass to the server and/or
  31. proxy in your HTTP request. The same list can be used for both host and proxy
  32. requests!
  33. The linked list should be a fully valid list of \fBstruct curl_slist\fP
  34. structs properly filled in. Use \fIcurl_slist_append(3)\fP to create the list
  35. and \fIcurl_slist_free_all(3)\fP to clean up an entire list. If you add a
  36. header that is otherwise generated and used by libcurl internally, your added
  37. one will be used instead. If you add a header with no content as in 'Accept:'
  38. (no data on the right side of the colon), the internally used header will get
  39. disabled. With this option you can add new headers, replace internal headers
  40. and remove internal headers. To add a header with no content (nothing to the
  41. right side of the colon), use the form 'MyHeader;' (note the ending
  42. semicolon).
  43. The headers included in the linked list \fBmust not\fP be CRLF-terminated,
  44. because libcurl adds CRLF after each header item. Failure to comply with this
  45. will result in strange bugs because the server will most likely ignore part of
  46. the headers you specified.
  47. The first line in a request (containing the method, usually a GET or POST) is
  48. not a header and cannot be replaced using this option. Only the lines
  49. following the request-line are headers. Adding this method line in this list
  50. of headers will only cause your request to send an invalid header. Use
  51. \fICURLOPT_CUSTOMREQUEST(3)\fP to change the method.
  52. Pass a NULL to this option to reset back to no custom headers.
  53. The most commonly replaced headers have "shortcuts" in the options
  54. \fICURLOPT_COOKIE(3)\fP, \fICURLOPT_USERAGENT(3)\fP and
  55. \fICURLOPT_REFERER(3)\fP.
  56. There's an alternative option that sets or replaces headers only for requests
  57. that are sent with CONNECT to a proxy: \fICURLOPT_PROXYHEADER(3)\fP. Use
  58. \fICURLOPT_HEADEROPT(3)\fP to control the behavior.
  59. .SH DEFAULT
  60. NULL
  61. .SH PROTOCOLS
  62. HTTP
  63. .SH EXAMPLE
  64. TODO
  65. .SH AVAILABILITY
  66. As long as HTTP is enabled
  67. .SH RETURN VALUE
  68. Returns CURLE_OK if HTTP is supported, and CURLE_UNKNOWN_OPTION if not.
  69. .SH "SEE ALSO"
  70. .BR CURLOPT_CUSTOMREQUEST "(3), " CURLOPT_HEADEROPT "(3), "
  71. .BR CURLOPT_PROXYHEADER "(3)"