]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
cmdline-opts/docs: mentioned the negative option part
authorDaniel Stenberg <daniel@haxx.se>
Sat, 19 Aug 2023 18:06:14 +0000 (20:06 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 19 Aug 2023 21:51:46 +0000 (23:51 +0200)
... for --no-alpn and --no-buffer in the same style done for other --no-
options:

"Note that this is the negated option name documented."

Closes #11695

docs/cmdline-opts/no-alpn.d
docs/cmdline-opts/no-buffer.d

index 7b86f129db72cf730535f00389b513485655edeb..102f2990e5ffd2ed0cde8f638901b1bbac193e2c 100644 (file)
@@ -14,3 +14,6 @@ Multi: boolean
 Disable the ALPN TLS extension. ALPN is enabled by default if libcurl was built
 with an SSL library that supports ALPN. ALPN is used by a libcurl that supports
 HTTP/2 to negotiate HTTP/2 support with the server during https sessions.
+
+Note that this is the negated option name documented. You can use --alpn to
+enable ALPN.
index 274a5a05f080a6de92d68d54ab24db64ecfbb2d3..7dc4bc534f3f9ed44fcc4b91aec2c2fe2e25fc45 100644 (file)
@@ -13,3 +13,6 @@ Disables the buffering of the output stream. In normal work situations, curl
 will use a standard buffered output stream that will have the effect that it
 will output the data in chunks, not necessarily exactly when the data arrives.
 Using this option will disable that buffering.
+
+Note that this is the negated option name documented. You can use --buffer to
+enable buffering again.