mirror of
https://github.com/curl/curl.git
synced 2026-08-24 19:53:46 +03:00
http: add --strip-path-slash and CURLOPT_STRIP_PATH_SLASH
... to enable sending "OPTIONS *" which wasn't possible previously. This option currently only works for HTTP. Added test cases 1298 + 1299 to verify Fixes #1280 Closes #1462
This commit is contained in:
parent
176ec51382
commit
b778ae4c5e
21 changed files with 220 additions and 25 deletions
|
|
@ -42,6 +42,6 @@ DPAGES = abstract-unix-socket.d anyauth.d append.d basic.d cacert.d capath.d cer
|
|||
tlsauthtype.d tlspassword.d tlsuser.d tlsv1.0.d tlsv1.1.d tlsv1.2.d \
|
||||
tlsv1.3.d tlsv1.d trace-ascii.d trace.d trace-time.d tr-encoding.d \
|
||||
unix-socket.d upload-file.d url.d use-ascii.d user-agent.d user.d \
|
||||
verbose.d version.d write-out.d xattr.d
|
||||
verbose.d version.d write-out.d xattr.d strip-path-slash.d
|
||||
|
||||
OTHERPAGES = page-footer page-header
|
||||
|
|
|
|||
7
docs/cmdline-opts/strip-path-slash.d
Normal file
7
docs/cmdline-opts/strip-path-slash.d
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
Long: strip-path-slash
|
||||
Help: Strip off the first slash of the path
|
||||
Protocols: HTTP
|
||||
---
|
||||
Tells curl to strip the leading slash from the path when it sends the path to
|
||||
the server. Useful when wanting to issue HTTP requests without leading slash,
|
||||
like "OPTIONS *".
|
||||
Loading…
Add table
Add a link
Reference in a new issue