Home
last modified time | relevance | path

Searched refs:protocols (Results 1 – 25 of 79) sorted by relevance

1234

/curl/tests/
H A Ddevtest.pl93 @protocols = split(' ', lc($line));
99 push @protocols, map(("$_-ipv6", "$_-unix"), @protocols);
102 push @protocols, 'http-proxy';
105 push @protocols, 'none';
173 @protocols = split(",", $ARGV[0]);
175 print "Set " . scalar @protocols . " protocols\n";
H A Dglobalconfig.pm65 @protocols
112 our @protocols; # array of lowercase supported protocol servers
H A Druntests.pl462 @protocols = split(' ', lc($line));
468 push @protocols, map(("$_-ipv6", "$_-unix"), @protocols);
471 push @protocols, 'http-proxy';
474 push @protocols, 'none';
667 push @protocols, 'http/2';
672 push @protocols, 'http/3';
678 push @protocols, 'https-proxy';
695 for(@protocols) {
702 push @protocols, 'httptls';
703 push @protocols, 'httptls-ipv6';
[all …]
/curl/docs/cmdline-opts/
H A Dproto.md5 Arg: <protocols>
19 Limit what protocols to allow for transfers. Protocols are evaluated left to
24 Permit this protocol in addition to protocols already permitted (this is
28 Deny this protocol, removing it from the list of protocols already permitted.
37 For example: --proto -ftps uses the default protocols, but disables ftps
43 Unknown and disabled protocols produce a warning. This allows scripts to
44 safely rely on being able to disable potentially dangerous protocols, without
48 as concatenating the protocols into one instance of the option.
H A Dproto-redir.md5 Arg: <protocols>
18 Limit what protocols to allow on redirects. Protocols denied by --proto are
19 not overridden by this option. See --proto for how protocols are represented.
26 7.65.2). Specifying *all* or *+all* enables all protocols on redirects, which
H A Dinsecure.md25 When this option is not used for protocols using TLS, curl verifies the
38 When curl uses secure protocols it trusts responses and allows for example
H A Dcreate-file-mode.md20 protocols, this option allows the user to set which 'mode' to set on the file
H A Dinclude.md21 more... With non-HTTP protocols, the "headers" are other server communication.
/curl/tests/data/
H A Dtest200437 for several protocols
63 for several protocols
65 for several protocols
67 for several protocols
69 for several protocols
71 for several protocols
H A Dtest101320 Compare curl --version with curl-config --protocols
26 %SRCDIR/libtest/test%TESTNUMBER.pl ../curl-config %LOGDIR/stdout%TESTNUMBER protocols
H A Dtest147427 --proto -all disables all protocols
H A Dtest44546 Refuse tunneling protocols through HTTP proxy
/curl/docs/libcurl/opts/
H A DCURLOPT_PROTOCOLS_STR.md19 CURLOPT_PROTOCOLS_STR - allowed protocols
34 protocols but still limit specific transfers to only be allowed to use a
35 subset of them. By default, libcurl accepts all protocols it was built with
41 These are the available protocols:
47 You can set "ALL" as a short-cut to enable all protocols. Note that by setting
48 all, you may enable protocols that were not supported the day you write this
52 protocols in the current libcurl. CURLINFO_SCHEME(3) is the recommended
57 All protocols built-in
H A DCURLOPT_REDIR_PROTOCOLS.md18 CURLOPT_REDIR_PROTOCOLS - protocols allowed to redirect to
32 control all available protocols!
35 limits what protocols libcurl may use in a transfer that it follows to in a
37 limit specific transfers to only be allowed to use a subset of protocols in
44 *CURLPROTO_ALL* enables all protocols on redirect, including those
83 Older versions defaulted to all protocols except FILE, SCP and since 7.40.0
108 Added in 7.19.4, before then it would follow all protocols. Deprecated
H A DCURLOPT_PROTOCOLS.md17 CURLOPT_PROTOCOLS - allowed protocols
31 available protocols!
34 limits what protocols libcurl may use in the transfer. This allows you to have
35 a libcurl built to support a wide range of protocols but still limit specific
37 accepts all protocols it supports (*CURLPROTO_ALL*). See also
74 All protocols built-in.
H A DCURLOPT_REDIR_PROTOCOLS_STR.md19 CURLOPT_REDIR_PROTOCOLS_STR - protocols allowed to redirect to
33 insensitive protocol names (URL schemes). That list limits what protocols
36 limit specific transfers to only be allowed to use a subset of protocols in
45 These are the available protocols:
51 You can set "ALL" as a short-cut to enable all protocols. Note that by setting
52 all, you may enable protocols that were not supported the day you write this
62 Older versions defaulted to all protocols except FILE, SCP and since 7.40.0
H A DCURLOPT_URL.md57 curl_version_info(3) for detailed information of which protocols are supported
60 CURLOPT_PROTOCOLS_STR(3) can be used to limit what protocols libcurl may
111 Accepting external URLs may also use other protocols than http:// or other
115 (possibly to other protocols too). Consider your
H A DCURLOPT_FOLLOWLOCATION.md40 libcurl restricts what protocols it automatically follow redirects to. The
41 accepted target protocols are set with CURLOPT_REDIR_PROTOCOLS(3). By
H A DCURLOPT_CRLF.md56 SMTP since 7.40.0, other protocols since they were introduced
/curl/
H A Dcurl-config.in53 --protocols newline separated list of enabled protocols
91 --protocols)
/curl/docs/examples/
H A Dprotofeats.c44 for(ptr = ver->protocols; *ptr; ++ptr) in main()
/curl/scripts/
H A Dmanagen220 sub protocols { subroutine
450 my $protocols;
500 $protocols=$1;
628 if($protocols) {
629 push @leading, protocols($manpage, $standalone, $protocols);
783 my $protocols;
813 $protocols=$1;
830 $protolong{$long}=$protocols;
/curl/docs/
H A Dcurl-config.md72 ## --protocols
74 Lists what particular protocols the installed libcurl was built to support. At
77 protocols are listed using uppercase and are separated by newlines. There may
78 be none, one, or several protocols in the list. (Added in 7.13.0)
/curl/src/
H A Dtool_libinfo.c147 if(curlinfo->protocols) { in get_libcurl_info()
150 built_in_protos = curlinfo->protocols; in get_libcurl_info()
/curl/docs/libcurl/
H A Dlibcurl.m443 # where yyy are the various protocols supported by libcurl. Both xxx
47 # defined to 'yes' for those features and protocols that were found.
57 # include this script! Without curl-config, we can only guess what protocols
146 # Is it modern enough to have --protocols? (7.12.4)
148 _libcurl_protocols=`$_libcurl_config --protocols`
223 # We do not have --protocols, so just assume that all
224 # protocols are available

Completed in 87 milliseconds

1234