Home
last modified time | relevance | path

Searched refs:L (Results 1 – 25 of 340) sorted by relevance

12345678910>>...14

/curl/include/curl/
H A Dsystem.h66 # define CURL_SUFFIX_CURL_OFF_T L
75 # define CURL_SUFFIX_CURL_OFF_T L
84 # define CURL_SUFFIX_CURL_OFF_T L
99 # define CURL_SUFFIX_CURL_OFF_T L
108 # define CURL_SUFFIX_CURL_OFF_T L
130 # define CURL_SUFFIX_CURL_OFF_T L
139 # define CURL_SUFFIX_CURL_OFF_T L
156 # define CURL_SUFFIX_CURL_OFF_T L
195 # define CURL_SUFFIX_CURL_OFF_T L
273 # define CURL_SUFFIX_CURL_OFF_T L
[all …]
/curl/docs/examples/
H A Dcertinfo.c52 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L); in main()
53 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L); in main()
55 curl_easy_setopt(curl, CURLOPT_VERBOSE, 0L); in main()
H A Dusercertinmem.c184 curl_easy_setopt(ch, CURLOPT_VERBOSE, 0L); in main()
185 curl_easy_setopt(ch, CURLOPT_HEADER, 0L); in main()
197 curl_easy_setopt(ch, CURLOPT_SSL_VERIFYPEER, 0L); in main()
198 curl_easy_setopt(ch, CURLOPT_SSL_VERIFYHOST, 0L); in main()
H A Dsessioninfo.c99 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L); in main()
100 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L); in main()
102 curl_easy_setopt(curl, CURLOPT_VERBOSE, 0L); in main()
H A Dhttps.c53 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L); in main()
63 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L); in main()
H A Dimap-ssl.c65 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L); in main()
73 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L); in main()
H A Dpop3-ssl.c64 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L); in main()
72 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L); in main()
H A Dthreaded-ssl.c63 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L); in pull_one_url()
64 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L); in pull_one_url()
H A Dftpuploadresume.c127 curl_easy_setopt(curlhandle, CURLOPT_NOBODY, 0L); in upload()
128 curl_easy_setopt(curlhandle, CURLOPT_HEADER, 0L); in upload()
135 curl_easy_setopt(curlhandle, CURLOPT_APPEND, 0L); in upload()
/curl/docs/libcurl/opts/
H A DCURLOPT_TCP_KEEPIDLE.md53 curl_easy_setopt(curl, CURLOPT_TCP_KEEPALIVE, 1L);
56 curl_easy_setopt(curl, CURLOPT_TCP_KEEPIDLE, 120L);
59 curl_easy_setopt(curl, CURLOPT_TCP_KEEPINTVL, 60L);
62 curl_easy_setopt(curl, CURLOPT_TCP_KEEPCNT, 3L);
H A DCURLOPT_TCP_KEEPINTVL.md52 curl_easy_setopt(curl, CURLOPT_TCP_KEEPALIVE, 1L);
55 curl_easy_setopt(curl, CURLOPT_TCP_KEEPIDLE, 120L);
58 curl_easy_setopt(curl, CURLOPT_TCP_KEEPINTVL, 60L);
61 curl_easy_setopt(curl, CURLOPT_TCP_KEEPCNT, 3L);
H A DCURLOPT_TCP_KEEPALIVE.md54 curl_easy_setopt(curl, CURLOPT_TCP_KEEPALIVE, 1L);
57 curl_easy_setopt(curl, CURLOPT_TCP_KEEPIDLE, 120L);
60 curl_easy_setopt(curl, CURLOPT_TCP_KEEPINTVL, 60L);
63 curl_easy_setopt(curl, CURLOPT_TCP_KEEPCNT, 3L);
H A DCURLOPT_TCP_KEEPCNT.md54 curl_easy_setopt(curl, CURLOPT_TCP_KEEPALIVE, 1L);
57 curl_easy_setopt(curl, CURLOPT_TCP_KEEPIDLE, 120L);
60 curl_easy_setopt(curl, CURLOPT_TCP_KEEPINTVL, 60L);
63 curl_easy_setopt(curl, CURLOPT_TCP_KEEPCNT, 3L);
H A DCURLOPT_SSH_COMPRESSION.md30 Pass a long as parameter set to 1L to enable or 0L to disable.
51 curl_easy_setopt(curl, CURLOPT_SSH_COMPRESSION, 1L);
H A DCURLOPT_DOH_SSL_VERIFYHOST.md35 Pass a long set to 2L as asking curl to *verify* the DoH (DNS-over-HTTPS)
49 When the *verify* value is set to 1L it is treated the same as 2L. However
53 When the *verify* value is set to 0L, the connection succeeds regardless of
78 curl_easy_setopt(curl, CURLOPT_DOH_SSL_VERIFYHOST, 0L);
H A DCURLOPT_MAIL_RCPT_ALLOWFAILS.md30 If *allow* is set to 1L, allow RCPT TO command to fail for some recipients.
36 The default behavior can be changed by setting *allow* to 1L which makes
65 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT_ALLOWFAILS, 1L);
77 two letter L) before 8.2.0
H A DCURLOPT_UNRESTRICTED_AUTH.md33 Set the long *gohead* parameter to 1L to make libcurl continue to send
38 Further, when this option is not used or set to **0L**, libcurl does not send
50 CURLOPT_UNRESTRICTED_AUTH(3) to 1L makes curl trust the server and sends
73 curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
74 curl_easy_setopt(curl, CURLOPT_UNRESTRICTED_AUTH, 1L);
H A DCURLOPT_HTTP09_ALLOWED.md29 Pass the long argument *allowed* set to 1L to allow HTTP/0.9 responses.
50 curl_easy_setopt(curl, CURLOPT_HTTP09_ALLOWED, 1L);
60 Since 7.66.0, libcurl requires this option set to 1L to allow HTTP/0.9
/curl/tests/libtest/
H A Dlib540.c106 long L; in loop() local
139 res_multi_timeout(cm, &L); in loop()
145 if(L != -1) { in loop()
148 itimeout = (L > INT_MAX) ? INT_MAX : (int)L; in loop()
150 itimeout = (int)L; in loop()
H A Dlib1970.c48 test_setopt(curl, CURLOPT_INFILESIZE, 0L); in test()
52 test_setopt(curl, CURLOPT_HEADER, 0L); in test()
/curl/lib/
H A Dnonblock.c81 long flags = nonblock ? 1L : 0L; in curlx_nonblock()
87 long b = nonblock ? 1L : 0L; in curlx_nonblock()
/curl/tests/data/
H A Dtest116915 Verify that runtests.pl accepts an -L option
19 %SRCDIR/runtests.pl -L %PWD/%LOGDIR/test%TESTNUMBER-library.pl
H A Dtest140071 curl_easy_setopt(hnd, CURLOPT_BUFFERSIZE, 102400L);
74 curl_easy_setopt(hnd, CURLOPT_MAXREDIRS, 50L);
75 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L);
77 curl_easy_setopt(hnd, CURLOPT_FTP_SKIP_PASV_IP, 1L);
79 curl_easy_setopt(hnd, CURLOPT_TCP_KEEPALIVE, 1L);
H A Dtest140764 curl_easy_setopt(hnd, CURLOPT_BUFFERSIZE, 102400L);
66 curl_easy_setopt(hnd, CURLOPT_DIRLISTONLY, 1L);
68 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L);
69 curl_easy_setopt(hnd, CURLOPT_FTP_SKIP_PASV_IP, 1L);
70 curl_easy_setopt(hnd, CURLOPT_TCP_KEEPALIVE, 1L);
H A Dtest140274 curl_easy_setopt(hnd, CURLOPT_BUFFERSIZE, 102400L);
79 curl_easy_setopt(hnd, CURLOPT_MAXREDIRS, 50L);
80 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L);
82 curl_easy_setopt(hnd, CURLOPT_FTP_SKIP_PASV_IP, 1L);
84 curl_easy_setopt(hnd, CURLOPT_TCP_KEEPALIVE, 1L);

Completed in 69 milliseconds

12345678910>>...14