<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/curl.git/src/tool_help.c, branch bagder/test493-https</title>
<subtitle>github.com: bagder/curl.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/'/>
<entry>
<title>docs: add missing Arg tag to --stderr</title>
<updated>2021-03-04T23:01:55+00:00</updated>
<author>
<name>Vladimir Varlamov</name>
<email>bes.internal@gmail.com</email>
</author>
<published>2021-03-04T20:39:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=e1655b2477e4ccc0104a007464d3f92319a89508'/>
<id>e1655b2477e4ccc0104a007464d3f92319a89508</id>
<content type='text'>
Prior to this change the required argument was not shown.

curl.1 before: --stderr
curl.1 after: --stderr &lt;file&gt;

curl --help before:
     --stderr        Where to redirect stderr

curl --help after:
     --stderr &lt;file&gt;  Where to redirect stderr

Closes https://github.com/curl/curl/pull/6692
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Prior to this change the required argument was not shown.

curl.1 before: --stderr
curl.1 after: --stderr &lt;file&gt;

curl --help before:
     --stderr        Where to redirect stderr

curl --help after:
     --stderr &lt;file&gt;  Where to redirect stderr

Closes https://github.com/curl/curl/pull/6692
</pre>
</div>
</content>
</entry>
<entry>
<title>tool_help: Increase space between option and description</title>
<updated>2021-02-28T18:41:15+00:00</updated>
<author>
<name>Jay Satiro</name>
<email>raysatiro@yahoo.com</email>
</author>
<published>2021-02-27T23:08:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=5743d66b9110be800ffc8f0ef8991d070f56bad0'/>
<id>5743d66b9110be800ffc8f0ef8991d070f56bad0</id>
<content type='text'>
- Increase the minimum number of spaces between the option and the
  description from 1 to 2.

Before:
~~~
 -u, --user &lt;user:password&gt; Server user and password
 -A, --user-agent &lt;name&gt; Send User-Agent &lt;name&gt; to server
 -v, --verbose       Make the operation more talkative
 -V, --version       Show version number and quit
 -w, --write-out &lt;format&gt; Use output FORMAT after completion
     --xattr         Store metadata in extended file attributes
~~~

After:
~~~
 -u, --user &lt;user:password&gt;  Server user and password
 -A, --user-agent &lt;name&gt;  Send User-Agent &lt;name&gt; to server
 -v, --verbose       Make the operation more talkative
 -V, --version       Show version number and quit
 -w, --write-out &lt;format&gt;  Use output FORMAT after completion
     --xattr         Store metadata in extended file attributes
~~~

Closes https://github.com/curl/curl/pull/6674
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Increase the minimum number of spaces between the option and the
  description from 1 to 2.

Before:
~~~
 -u, --user &lt;user:password&gt; Server user and password
 -A, --user-agent &lt;name&gt; Send User-Agent &lt;name&gt; to server
 -v, --verbose       Make the operation more talkative
 -V, --version       Show version number and quit
 -w, --write-out &lt;format&gt; Use output FORMAT after completion
     --xattr         Store metadata in extended file attributes
~~~

After:
~~~
 -u, --user &lt;user:password&gt;  Server user and password
 -A, --user-agent &lt;name&gt;  Send User-Agent &lt;name&gt; to server
 -v, --verbose       Make the operation more talkative
 -V, --version       Show version number and quit
 -w, --write-out &lt;format&gt;  Use output FORMAT after completion
     --xattr         Store metadata in extended file attributes
~~~

Closes https://github.com/curl/curl/pull/6674
</pre>
</div>
</content>
</entry>
<entry>
<title>doh: add options to disable ssl verification</title>
<updated>2021-02-14T23:20:48+00:00</updated>
<author>
<name>Jay Satiro</name>
<email>raysatiro@yahoo.com</email>
</author>
<published>2021-02-11T22:09:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=53022e1893de74b73554396b697f5a06cc7bc3f2'/>
<id>53022e1893de74b73554396b697f5a06cc7bc3f2</id>
<content type='text'>
- New libcurl options CURLOPT_DOH_SSL_VERIFYHOST,
  CURLOPT_DOH_SSL_VERIFYPEER and CURLOPT_DOH_SSL_VERIFYSTATUS do the
  same as their respective counterparts.

- New curl tool options --doh-insecure and --doh-cert-status do the same
  as their respective counterparts.

Prior to this change DOH SSL certificate verification settings for
verifyhost and verifypeer were supposed to be inherited respectively
from CURLOPT_SSL_VERIFYHOST and CURLOPT_SSL_VERIFYPEER, but due to a bug
were not. As a result DOH verification remained at the default, ie
enabled, and it was not possible to disable. This commit changes
behavior so that the DOH verification settings are independent and not
inherited.

Ref: https://github.com/curl/curl/pull/4579#issuecomment-554723676

Fixes https://github.com/curl/curl/issues/4578
Closes https://github.com/curl/curl/pull/6597
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- New libcurl options CURLOPT_DOH_SSL_VERIFYHOST,
  CURLOPT_DOH_SSL_VERIFYPEER and CURLOPT_DOH_SSL_VERIFYSTATUS do the
  same as their respective counterparts.

- New curl tool options --doh-insecure and --doh-cert-status do the same
  as their respective counterparts.

Prior to this change DOH SSL certificate verification settings for
verifyhost and verifypeer were supposed to be inherited respectively
from CURLOPT_SSL_VERIFYHOST and CURLOPT_SSL_VERIFYPEER, but due to a bug
were not. As a result DOH verification remained at the default, ie
enabled, and it was not possible to disable. This commit changes
behavior so that the DOH verification settings are independent and not
inherited.

Ref: https://github.com/curl/curl/pull/4579#issuecomment-554723676

Fixes https://github.com/curl/curl/issues/4578
Closes https://github.com/curl/curl/pull/6597
</pre>
</div>
</content>
</entry>
<entry>
<title>curl: provide libgsasl version and feature info in -V output</title>
<updated>2021-02-11T15:16:45+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2021-02-11T07:54:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=1560cd1f9f5a2ecfe91d138a3189160c212855a4'/>
<id>1560cd1f9f5a2ecfe91d138a3189160c212855a4</id>
<content type='text'>
Closes #6592
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #6592
</pre>
</div>
</content>
</entry>
<entry>
<title>curl: add --fail-with-body</title>
<updated>2021-02-11T07:35:27+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2021-02-11T07:30:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=8a964cb217b0cd84783da5ba32b18944fc43feb1'/>
<id>8a964cb217b0cd84783da5ba32b18944fc43feb1</id>
<content type='text'>
Prevent both --fail and --fail-with-body on the same command line.

Verify with test 349, 360 and 361.

Closes #6449
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Prevent both --fail and --fail-with-body on the same command line.

Verify with test 349, 360 and 361.

Closes #6449
</pre>
</div>
</content>
</entry>
<entry>
<title>tool_help: add missing argument for --create-file-mode</title>
<updated>2021-02-10T19:10:49+00:00</updated>
<author>
<name>Jay Satiro</name>
<email>raysatiro@yahoo.com</email>
</author>
<published>2021-02-10T19:10:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=3183217246287eca61f762ce71be26656850a13f'/>
<id>3183217246287eca61f762ce71be26656850a13f</id>
<content type='text'>
Prior to this change the required argument was not shown in curl --help.

before:
     --create-file-mode File mode for created files

after:
     --create-file-mode &lt;mode&gt; File mode (octal) for created files

Reported-by: ZimCodes@users.noreply.github.com

Fixes https://github.com/curl/curl/issues/6590
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Prior to this change the required argument was not shown in curl --help.

before:
     --create-file-mode File mode for created files

after:
     --create-file-mode &lt;mode&gt; File mode (octal) for created files

Reported-by: ZimCodes@users.noreply.github.com

Fixes https://github.com/curl/curl/issues/6590
</pre>
</div>
</content>
</entry>
<entry>
<title>http: improve AWS HTTP v4 Signature auth</title>
<updated>2021-01-30T22:48:22+00:00</updated>
<author>
<name>Dmitry Wagin</name>
<email>dmitry.wagin@ya.ru</email>
</author>
<published>2021-01-25T14:02:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=796ce293defeeefb001bd8b76bbb75eb77a1ce0c'/>
<id>796ce293defeeefb001bd8b76bbb75eb77a1ce0c</id>
<content type='text'>
- Add support services without region and service prefixes in
the URL endpoint (ex. Min.IO, GCP, Yandex Cloud, Mail.Ru Cloud Solutions, etc)
by providing region and service parameters via aws-sigv4 option.
- Add [:region[:service]] suffix to aws-sigv4 option;
- Fix memory allocation errors.
- Refactor memory management.
- Use Curl_http_method instead() STRING_CUSTOMREQUEST.
- Refactor canonical headers generating.
- Remove repeated sha256_to_hex() usage.
- Add some docs fixes.
- Add some codestyle fixes.
- Add overloaded strndup() for debug - curl_dbg_strndup().
- Update tests.

Closes #6524
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Add support services without region and service prefixes in
the URL endpoint (ex. Min.IO, GCP, Yandex Cloud, Mail.Ru Cloud Solutions, etc)
by providing region and service parameters via aws-sigv4 option.
- Add [:region[:service]] suffix to aws-sigv4 option;
- Fix memory allocation errors.
- Refactor memory management.
- Use Curl_http_method instead() STRING_CUSTOMREQUEST.
- Refactor canonical headers generating.
- Remove repeated sha256_to_hex() usage.
- Add some docs fixes.
- Add some codestyle fixes.
- Add overloaded strndup() for debug - curl_dbg_strndup().
- Update tests.

Closes #6524
</pre>
</div>
</content>
</entry>
<entry>
<title>help: update to current codebase</title>
<updated>2021-01-12T07:09:22+00:00</updated>
<author>
<name>Emil Engler</name>
<email>me@emilengler.com</email>
</author>
<published>2021-01-12T06:34:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=3d783011061e5243f2fa1e600b2338e87dde0b20'/>
<id>3d783011061e5243f2fa1e600b2338e87dde0b20</id>
<content type='text'>
This commit bumps the help to the current state of the project.

Closes #6437
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit bumps the help to the current state of the project.

Closes #6437
</pre>
</div>
</content>
</entry>
<entry>
<title>tool: add AWS HTTP v4 Signature support</title>
<updated>2020-12-21T15:28:03+00:00</updated>
<author>
<name>Matthias Gatto</name>
<email>matthias.gatto@outscale.com</email>
</author>
<published>2020-07-09T10:04:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=6b27df82695256e6b0c802edff720840c5f1b669'/>
<id>6b27df82695256e6b0c802edff720840c5f1b669</id>
<content type='text'>
Signed-off-by: Matthias Gatto &lt;matthias.gatto@outscale.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Matthias Gatto &lt;matthias.gatto@outscale.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>curl: add --create-file-mode [mode]</title>
<updated>2020-12-21T09:52:41+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2020-12-20T17:44:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=a7696c73436f643d5d31ce0c3d48d282c79f4b5d'/>
<id>a7696c73436f643d5d31ce0c3d48d282c79f4b5d</id>
<content type='text'>
This option sets the (octal) mode to use for the remote file when one is
created, using the SFTP, SCP or FILE protocols. When not set, the
default is 0644.

Closes #6244
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This option sets the (octal) mode to use for the remote file when one is
created, using the SFTP, SCP or FILE protocols. When not set, the
default is 0644.

Closes #6244
</pre>
</div>
</content>
</entry>
</feed>
