mirror of
https://github.com/curl/curl.git
synced 2026-08-12 07:50:52 +03:00
tool: add --tcp-fastopen option
This commit is contained in:
parent
8f72b13660
commit
d49087f6bc
5 changed files with 12 additions and 0 deletions
|
|
@ -229,6 +229,7 @@ static const struct LongShort aliases[]= {
|
|||
{"Eq", "cert-status", FALSE},
|
||||
{"Er", "false-start", FALSE},
|
||||
{"Es", "ssl-no-revoke", FALSE},
|
||||
{"Et", "tcp-fastopen", FALSE},
|
||||
{"f", "fail", FALSE},
|
||||
{"F", "form", TRUE},
|
||||
{"Fs", "form-string", TRUE},
|
||||
|
|
@ -1415,6 +1416,10 @@ ParameterError getparameter(char *flag, /* f or -long-flag */
|
|||
config->ssl_no_revoke = TRUE;
|
||||
break;
|
||||
|
||||
case 't': /* --tcp-fastopen */
|
||||
config->tcp_fastopen = TRUE;
|
||||
break;
|
||||
|
||||
default: /* certificate file */
|
||||
{
|
||||
char *certname, *passphrase;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue