From: Daniel Stenberg Date: Sat, 19 Aug 2023 18:06:14 +0000 (+0200) Subject: cmdline-opts/docs: mentioned the negative option part X-Git-Tag: curl-8_3_0~131 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b3ee22193a01bb1197ff5af19336e8a9669acee1;p=thirdparty%2Fcurl.git cmdline-opts/docs: mentioned the negative option part ... 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 --- diff --git a/docs/cmdline-opts/no-alpn.d b/docs/cmdline-opts/no-alpn.d index 7b86f129db..102f2990e5 100644 --- a/docs/cmdline-opts/no-alpn.d +++ b/docs/cmdline-opts/no-alpn.d @@ -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. diff --git a/docs/cmdline-opts/no-buffer.d b/docs/cmdline-opts/no-buffer.d index 274a5a05f0..7dc4bc534f 100644 --- a/docs/cmdline-opts/no-buffer.d +++ b/docs/cmdline-opts/no-buffer.d @@ -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.