![]() |
![]()
| ![]() |
![]()
NAMECURLOPT_TIMEVALUE - time value for conditional SYNOPSIS#include <curl/curl.h> CURLcode curl_easy_setopt(CURL *handle, CURLOPT_TIMEVALUE, long val); DESCRIPTIONPass a long val as parameter. This should be the time counted as seconds since 1 Jan 1970, and the time is used in a condition as specified with CURLOPT_TIMECONDITION(3). On systems with 32-bit 'long' variables (such as Windows), this option cannot set dates beyond the year 2038. Consider CURLOPT_TIMEVALUE_LARGE(3) instead. DEFAULT0 PROTOCOLSThis functionality affects http only EXAMPLEint main(void) { AVAILABILITYAdded in curl 7.1 RETURN VALUEcurl_easy_setopt(3) returns a CURLcode indicating success or error. CURLE_OK (0) means everything was OK, non-zero means an error occurred, see libcurl-errors(3). SEE ALSOCURLOPT_TIMECONDITION(3), CURLOPT_TIMEVALUE_LARGE(3)
|