Lines Matching refs:to
19 CURLOPT_TIMEOUT - maximum time the transfer is allowed to complete
32 seconds that you allow the entire transfer operation to take. The whole thing,
33 from start to end. Normally, name lookups can take a considerable time and
41 Since this option puts a hard limit on how long time a request is allowed to
44 queue the transfer, and that time is included. You are advised to explore
46 CURLOPT_PROGRESSFUNCTION(3) to implement your own timeout logic.
51 With CURLOPT_CONNECTTIMEOUT(3) set to 3 and CURLOPT_TIMEOUT(3) set
52 to 5, the operation can never last longer than 5 seconds.
54 With CURLOPT_CONNECTTIMEOUT(3) set to 4 and CURLOPT_TIMEOUT(3) set
55 to 2, the operation can never last longer than 2 seconds.
57 This option may cause libcurl to use the SIGALRM signal to timeout system
59 signals to be used unless CURLOPT_NOSIGNAL(3) is set.
88 Returns CURLE_OK. Returns CURLE_BAD_FUNCTION_ARGUMENT if set to a negative
89 value or a value that when converted to milliseconds is too large.