]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
ws-docs: remove the outdated texts saying ws support is experimental
authorDaniel Stenberg <daniel@haxx.se>
Sun, 15 Dec 2024 14:57:13 +0000 (15:57 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Sun, 15 Dec 2024 17:14:52 +0000 (18:14 +0100)
It stopped being experimental in 8.10.0

Fixes #15749
Reported-by: Mohammed Sadiq
Closes #15751

docs/libcurl/curl_ws_meta.md
docs/libcurl/curl_ws_recv.md
docs/libcurl/curl_ws_send.md
docs/libcurl/libcurl-ws.md

index f95f25e8052e64631bf1df116439792cd31dbefd..669582eaaf9ad9ce30ddbe5b4f39fd95afac90e5 100644 (file)
@@ -29,8 +29,6 @@ const struct curl_ws_frame *curl_ws_meta(CURL *curl);
 
 # DESCRIPTION
 
-This function call is EXPERIMENTAL.
-
 When the write callback (CURLOPT_WRITEFUNCTION(3)) is invoked on
 received WebSocket traffic, curl_ws_meta(3) can be called from within
 the callback to provide additional information about the current frame.
index c13d74a5c68e77b7ecccec12069240eadce96c29..adb36d7e50bf837680642ee89175edeea652397a 100644 (file)
@@ -30,8 +30,6 @@ CURLcode curl_ws_recv(CURL *curl, void *buffer, size_t buflen,
 
 # DESCRIPTION
 
-This function call is EXPERIMENTAL.
-
 Retrieves as much as possible of a received WebSocket data fragment into the
 **buffer**, but not more than **buflen** bytes. *recv* is set to the
 number of bytes actually stored.
index 262250b546e3c2449edaaf5bb970699dff3c13c5..cb3b891ee146cb7f03b718122d35489543280a0c 100644 (file)
@@ -31,8 +31,6 @@ CURLcode curl_ws_send(CURL *curl, const void *buffer, size_t buflen,
 
 # DESCRIPTION
 
-This function call is EXPERIMENTAL.
-
 Send the specific message fragment over an established WebSocket
 connection. The *buffer* holds the data to send and it is *buflen*
 number of payload bytes in that memory area.
index 60c9fa59aa0c2969e4aea850b78f0f6cbc63c496..9536bf469d74a79bacc3d4ac9288f923c75b6881 100644 (file)
@@ -115,12 +115,3 @@ back to the application.
 Once such a setup has been successfully performed, the application can proceed
 and use curl_ws_recv(3) and curl_ws_send(3) freely to exchange
 WebSocket messages with the server.
-
-# EXPERIMENTAL
-
-The WebSocket API was introduced as experimental in 7.86.0 and is still
-experimental today.
-
-It is only built-in if explicitly opted in at build time. We discourage use of
-the WebSocket API in production because of its experimental state. We might
-change API, ABI and behavior before this "goes live".