-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcurlopts.go
125 lines (124 loc) · 1.97 KB
/
curlopts.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
package args
var (
curlShortValues = "EKCbcdDFPHhmoUreXYytzTuAw"
curlLongValues = []string{
"abstract-unix-socket",
"alt-svc",
"cacert",
"capath",
"cert",
"cert-type",
"ciphers",
"config",
"connect-timeout",
"connect-to",
"continue-at",
"cookie",
"cookie-jar",
"crlfile",
"curves",
"data",
"data-ascii",
"data-binary",
"data-raw",
"data-urlencode",
"delegation",
"dns-interface",
"dns-ipv4-addr",
"dns-ipv6-addr",
"dns-servers",
"doh-url",
"dump-header",
"egd-file",
"engine",
"etag-compare",
"etag-save",
"expect100-timeout",
"form",
"form-string",
"ftp-account",
"ftp-alternative-to-user",
"ftp-method",
"ftp-port",
"ftp-ssl-ccc-mode",
"happy-eyeballs-timeout-ms",
"header",
"help",
"hostpubmd5",
"interface",
"keepalive-time",
"key",
"key-type",
"krb",
"libcurl",
"limit-rate",
"local-port",
"login-options",
"mail-auth",
"mail-from",
"mail-rcpt",
"max-filesize",
"max-redirs",
"max-time",
"netrc-file",
"noproxy",
"oauth2-bearer",
"output",
"output-dir",
"pass",
"pinnedpubkey",
"proto",
"proto-default",
"proto-redir",
"proxy-cacert",
"proxy-capath",
"proxy-cert",
"proxy-cert-type",
"proxy-ciphers",
"proxy-crlfile",
"proxy-header",
"proxy-key",
"proxy-key-type",
"proxy-pass",
"proxy-pinnedpubkey",
"proxy-service-name",
"proxy-tls13-ciphers",
"proxy-tlsauthtype",
"proxy-tlspassword",
"proxy-tlsuser",
"proxy-user",
"proxy1.0",
"pubkey",
"random-file",
"range",
"referer",
"request",
"resolve",
"retry",
"retry-delay",
"retry-max-time",
"sasl-authzid",
"service-name",
"socks4",
"socks4a",
"socks5",
"socks5-gssapi-service",
"socks5-hostname",
"speed-limit",
"speed-time",
"telnet-option",
"tftp-blksize",
"time-cond",
"tls-max",
"tls13-ciphers",
"tlsauthtype",
"tlsuser",
"trace",
"trace-ascii",
"unix-socket",
"upload-file",
"url",
"user",
"user-agent",
"write-out"}
)