CURLOPT_TIMEVALUE_LARGE.3 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2021, 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 https://curl.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_TIMEVALUE_LARGE 3 "25 Jan 2018" "libcurl 7.59.0" "curl_easy_setopt options"
  24. .SH NAME
  25. CURLOPT_TIMEVALUE_LARGE \- time value for conditional
  26. .SH SYNOPSIS
  27. .nf
  28. #include <curl/curl.h>
  29. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_TIMEVALUE_LARGE,
  30. curl_off_t val);
  31. .fi
  32. .SH DESCRIPTION
  33. Pass a curl_off_t \fIval\fP as parameter. This should be the time counted as
  34. seconds since 1 Jan 1970, and the time will be used in a condition as
  35. specified with \fICURLOPT_TIMECONDITION(3)\fP.
  36. The difference between this option and \fICURLOPT_TIMEVALUE(3)\fP is the type
  37. of the argument. On systems where 'long' is only 32 bit wide, this option has
  38. to be used to set dates beyond the year 2038.
  39. .SH DEFAULT
  40. 0
  41. .SH PROTOCOLS
  42. HTTP, FTP, RTSP, and FILE
  43. .SH EXAMPLE
  44. .nf
  45. CURL *curl = curl_easy_init();
  46. if(curl) {
  47. curl_easy_setopt(curl, CURLOPT_URL, "https://example.com");
  48. /* January 1, 2020 is 1577833200 */
  49. curl_easy_setopt(curl, CURLOPT_TIMEVALUE_LARGE, (curl_off_t)1577833200);
  50. /* If-Modified-Since the above time stamp */
  51. curl_easy_setopt(curl, CURLOPT_TIMECONDITION, CURL_TIMECOND_IFMODSINCE);
  52. /* Perform the request */
  53. curl_easy_perform(curl);
  54. }
  55. .fi
  56. .SH AVAILABILITY
  57. Added in 7.59.0.
  58. .SH RETURN VALUE
  59. Returns CURLE_OK
  60. .SH "SEE ALSO"
  61. .BR CURLOPT_TIMECONDITION "(3), "
  62. .BR CURLOPT_TIMEVALUE_LARGE "(3), "