mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-14 08:04:40 +00:00
Update libcurl
This commit is contained in:
parent
20eb0a911a
commit
01a719ee58
3439 changed files with 529259 additions and 41492 deletions
26
Engine/lib/curl/docs/cmdline-opts/next.d
Normal file
26
Engine/lib/curl/docs/cmdline-opts/next.d
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
c: Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
SPDX-License-Identifier: curl
|
||||
Short: :
|
||||
Long: next
|
||||
Tags:
|
||||
Protocols:
|
||||
Added: 7.36.0
|
||||
Magic: divider
|
||||
Help: Make next URL use its separate set of options
|
||||
Category: curl
|
||||
Example: $URL --next -d postthis www2.example.com
|
||||
Example: -I $URL --next https://example.net/
|
||||
See-also: parallel config
|
||||
---
|
||||
Tells curl to use a separate operation for the following URL and associated
|
||||
options. This allows you to send several URL requests, each with their own
|
||||
specific options, for example, such as different user names or custom requests
|
||||
for each.
|
||||
|
||||
--next will reset all local options and only global ones will have their
|
||||
values survive over to the operation following the --next instruction. Global
|
||||
options include --verbose, --trace, --trace-ascii and --fail-early.
|
||||
|
||||
For example, you can do both a GET and a POST in a single command line:
|
||||
|
||||
curl www1.example.com --next -d postthis www2.example.com
|
||||
Loading…
Add table
Add a link
Reference in a new issue