Home
last modified time | relevance | path

Searched refs:options (Results 1 – 25 of 185) sorted by relevance

12345678

/curl/tests/data/
H A Dtest146234 Usage: curl [options...] <url>
40 dns General DNS options
41 file FILE protocol options
42 ftp FTP protocol options
44 imap IMAP protocol options
47 pop3 POP3 protocol options
50 scp SCP protocol options
51 sftp SFTP protocol options
52 smtp SMTP protocol options
53 ssh SSH protocol options
[all …]
H A Dtest9715 options-in-versions
17 Verify that options-in-versions and docs/cmdline-opts are in sync
21 %SRCDIR/test971.pl %SRCDIR/../docs/options-in-versions %SRCDIR/../docs/cmdline-opts
H A Dtest8967 --login-options
23 IMAP with --login-options 'AUTH=dummy' (failing)
26 'imap://%HOSTIP:%IMAPPORT/895/;MAILINDEX=1' -u '"user:sec"ret{' --login-options 'AUTH=dummy'
H A Dtest8957 --login-options
32 IMAP with --login-options 'AUTH=*'
35 'imap://%HOSTIP:%IMAPPORT/%TESTNUMBER/;MAILINDEX=1' -u '"user:sec"ret{' --login-options 'AUTH=*'
H A Dtest124227 TFTP retrieve without TFTP options requests
30 tftp://%HOSTIP:%TFTPPORT//%TESTNUMBER --tftp-no-options
H A Dtest124316 TFTP send without TFTP options requests
19 -T %LOGDIR/test%TESTNUMBER.txt tftp://%HOSTIP:%TFTPPORT// --tftp-no-options
/curl/tests/
H A Ddictserver.py52 def dictserver(options): argument
57 if options.pidfile:
65 local_bind = (options.host, options.port)
135 def setup_logging(options): argument
145 if options.logfile:
154 if options.verbose:
181 options = get_options() variable
184 setup_logging(options)
188 rc = dictserver(options)
193 if options.pidfile and os.path.isfile(options.pidfile):
[all …]
H A Dsmbserver.py107 def smbserver(options): argument
111 if options.pidfile:
143 if not options.srcdir or not os.path.isdir(options.srcdir):
148 smb_server = TestSmbServer((options.host, options.port),
403 def setup_logging(options): argument
413 if options.logfile:
422 if options.verbose:
438 options = get_options() variable
441 setup_logging(options)
445 rc = smbserver(options)
[all …]
H A Dnegtelnetserver.py53 def telnetserver(options): argument
58 if options.pidfile:
66 local_bind = (HOST, options.port)
317 def setup_logging(options): argument
329 if options.logfile:
338 if options.verbose:
365 options = get_options() variable
368 setup_logging(options)
372 rc = telnetserver(options)
377 if options.pidfile and os.path.isfile(options.pidfile):
[all …]
H A Dtest971.pl52 my @options;
68 push @options, $flag;
75 return @options;
/curl/docs/cmdline-opts/
H A Dlogin-options.md4 Long: login-options
5 Arg: <options>
7 Help: Server login options
14 - --login-options 'AUTH=*' imap://example.com
17 # `--login-options`
19 Specify the login options to use during server authentication.
21 You can use login options to specify protocol specific options that may be
23 options. For more information about login options please see RFC 2384,
H A Dtftp-no-options.md4 Long: tftp-no-options
5 Help: Do not send any TFTP options
13 - --tftp-no-options tftp://192.168.0.1/
16 # `--tftp-no-options`
18 Do not to send TFTP options requests. This improves interop with some legacy
19 servers that do not acknowledge or properly implement TFTP options. When this
H A Dnext.md10 Help: Make next URL use its separate set of options
23 Use a separate operation for the following URL and associated options. This
24 allows you to send several URL requests, each with their own specific options,
27 --next resets all local options and only global ones have their values survive
28 over to the operation following the --next instruction. Global options include
H A Dtelnet-option.md19 Pass options to the telnet protocol. Supported options are:
H A Dhelp.md19 Usage help. List all curl command line options within the given **category**.
24 For category **all**, curl displays help for all options.
/curl/docs/libcurl/opts/
H A DCURLOPT_TELNETOPTIONS.md16 CURLOPT_TELNETOPTIONS - set of telnet options
31 supports the options **TTYPE**, **XDISPLOC** and **NEW_ENV**. See the TELNET
46 struct curl_slist *options;
47 options = curl_slist_append(NULL, "TTTYPE=vt100");
48 options = curl_slist_append(options, "USER=foobar");
50 curl_easy_setopt(curl, CURLOPT_TELNETOPTIONS, options);
53 curl_slist_free_all(options);
H A DCURLOPT_TFTP_NO_OPTIONS.md15 CURLOPT_TFTP_NO_OPTIONS - send no TFTP options requests
27 Set *onoff* to 1L to exclude all TFTP options defined in RFC 2347,
31 acknowledge or properly implement TFTP options. When this option is used
57 /* do not send TFTP options requests */
H A DCURLOPT_LOGIN_OPTIONS.md19 CURLOPT_LOGIN_OPTIONS - login options
26 CURLcode curl_easy_setopt(CURL *handle, CURLOPT_LOGIN_OPTIONS, char *options);
32 null-terminated *options* string to use for the transfer.
34 For more information about the login options please see RFC 2384, RFC 5092 and
37 CURLOPT_LOGIN_OPTIONS(3) can be used to set protocol specific login options,
/curl/
H A Dappveyor.sh39 options=''
41 [ "${OPENSSL}" = 'ON' ] && options+=" -DOPENSSL_ROOT_DIR=${openssl_root_win}"
42 [ -n "${CURLDEBUG:-}" ] && options+=" -DENABLE_CURLDEBUG=${CURLDEBUG}"
43 [ "${PRJ_CFG}" = 'Debug' ] && options+=' -DCMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG='
44 [ "${PRJ_CFG}" = 'Release' ] && options+=' -DCMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE='
45 [[ "${PRJ_GEN}" = *'Visual Studio'* ]] && options+=' -DCMAKE_VS_GLOBALS=TrackFileAccess=false'
49 options+=' -DCURL_STATIC_CRT=ON'
52 cmake -B _bld "-G${PRJ_GEN}" ${TARGET:-} ${options} \
/curl/lib/
H A Dhttp1.c60 static CURLcode trim_line(struct h1_req_parser *parser, int options) in trim_line() argument
69 else if(options & H1_PARSE_OPT_STRICT) in trim_line()
72 else if(options & H1_PARSE_OPT_STRICT) in trim_line()
75 else if(options & H1_PARSE_OPT_STRICT) in trim_line()
124 *err = trim_line(parser, options); in next_line()
137 const char *scheme_default, int options) in start_req() argument
230 if(!(options & H1_PARSE_OPT_STRICT)) in start_req()
238 if(!url && (options & H1_PARSE_OPT_STRICT)) { in start_req()
263 const char *scheme_default, int options, in Curl_h1_req_parse_read() argument
270 n = next_line(parser, buf, buflen, options, err); in Curl_h1_req_parse_read()
[all …]
/curl/tests/unit/
H A Dunit1620.c51 char *options = NULL; in test_parse() local
53 &userstr, &passwdstr, &options); in test_parse()
58 fail_unless(!!exp_options == !!options, "options expectation failed"); in test_parse()
65 fail_unless(!exp_options || strcmp(options, exp_options) == 0, in test_parse()
71 free(options); in test_parse()
/curl/docs/libcurl/
H A Dcurl_easy_option_next.md17 curl_easy_option_next - iterate over easy setopt options
31 struct, providing an ability to iterate over all known options for
38 The options returned by this functions are the ones known to this libcurl and
74 /* iterate over all available options */
91 no more options.
H A Dcurl_easy_reset.md18 curl_easy_reset - reset all options of a libcurl session handle
30 Re-initializes all options previously set on a specified CURL handle to the
46 /* ... the handle is used and options are set ... */
H A Dlibcurl-easy.md28 You continue by setting all the options you want in the upcoming transfer, the
39 available options.
41 If you at any point would like to blank all previously set options for a
43 make a clone of an easy handle (with all its set options) using
50 After the transfer has been made, you can set new options and make another
/curl/docs/
H A Dcurl-config.md17 **curl-config [options]**
36 Set of compiler options (CFLAGS) to use when compiling files that use
59 Displays the available options.
63 Shows the complete set of libs and other linker options you need in order to
88 Shows the complete set of libs and other linker options you need in order to
105 What linker options do I need when I link with libcurl?
109 What compiler options do I need when I compile using libcurl functions?

Completed in 37 milliseconds

12345678