mirror of
https://github.com/curl/curl.git
synced 2026-07-28 09:23:07 +03:00
tcp-nodelay patch by Joe Halpin
This commit is contained in:
parent
189c2f4989
commit
bb3d6e8552
7 changed files with 70 additions and 1 deletions
10
src/main.c
10
src/main.c
|
|
@ -294,6 +294,7 @@ static void help(void)
|
|||
" --disable-epsv Prevent curl from using EPSV (F)",
|
||||
" -D/--dump-header <file> Write the headers to this file",
|
||||
" --egd-file <file> EGD socket path for random data (SSL)",
|
||||
" --tcp-nodelay Set the TCP_NODELAY option",
|
||||
#ifdef USE_ENVIRONMENT
|
||||
" --environment Write result codes to environment variables (RISC OS)",
|
||||
#endif
|
||||
|
|
@ -506,6 +507,8 @@ struct Configurable {
|
|||
bool ftp_ssl;
|
||||
|
||||
char *socks5proxy;
|
||||
|
||||
bool tcp_nodelay;
|
||||
};
|
||||
|
||||
/* global variable to hold info about libcurl */
|
||||
|
|
@ -1140,6 +1143,7 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */
|
|||
{"$a", "ftp-ssl", FALSE},
|
||||
{"$b", "ftp-pasv", FALSE},
|
||||
{"$c", "socks5", TRUE},
|
||||
{"$d", "tcp-nodelay",FALSE},
|
||||
{"0", "http1.0", FALSE},
|
||||
{"1", "tlsv1", FALSE},
|
||||
{"2", "sslv2", FALSE},
|
||||
|
|
@ -1463,6 +1467,9 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */
|
|||
case 'c': /* --socks specifies a socks5 proxy to use */
|
||||
GetStr(&config->socks5proxy, nextarg);
|
||||
break;
|
||||
case 'd': /* --tcp-nodelay option */
|
||||
config->tcp_nodelay ^= TRUE;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case '#': /* added 19990617 larsa */
|
||||
|
|
@ -3112,6 +3119,9 @@ operate(struct Configurable *config, int argc, char *argv[])
|
|||
}
|
||||
#endif
|
||||
|
||||
if(1 == config->tcp_nodelay)
|
||||
curl_easy_setopt(curl, CURLOPT_TCP_NODELAY, 1);
|
||||
|
||||
curl_easy_setopt(curl, CURLOPT_SSLENGINE, config->engine);
|
||||
curl_easy_setopt(curl, CURLOPT_SSLENGINE_DEFAULT, 1);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue