Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions site/source/docs/tools_reference/settings_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -563,6 +563,8 @@ You can set 'subprotocol' to null, if you don't want to specify it.
Run time configuration may be useful as it lets an application select
multiple different services.

.. note:: This setting is deprecated

Default value: false

.. _websocket_url:
Expand Down Expand Up @@ -3542,6 +3544,7 @@ these settings please open a bug (or reply to one of the existing bugs).
- ``DETERMINISTIC``: under consideration for removal (https://github.com/emscripten-core/emscripten/issues/26647)
- ``USE_PTHREADS``: prefer the standard -pthread flag
- ``MEMORY64``: prefer the standard -m64 or --target=wasm64 flags
- ``SOCKET_WEBRTC``: under consideration for removal (https://github.com/emscripten-core/emscripten/issues/27366)

.. _legacy-settings:

Expand Down
1 change: 1 addition & 0 deletions src/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,7 @@ var FS_DEBUG = false;
// Run time configuration may be useful as it lets an application select
// multiple different services.
// [link]
// [deprecated]
var SOCKET_WEBRTC = false;

// A string containing either a WebSocket URL prefix (ws:// or wss://) or a
Expand Down
1 change: 1 addition & 0 deletions tools/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@
'DETERMINISTIC': 'under consideration for removal (https://github.com/emscripten-core/emscripten/issues/26647)',
'USE_PTHREADS': 'prefer the standard -pthread flag',
'MEMORY64': 'prefer the standard -m64 or --target=wasm64 flags',
'SOCKET_WEBRTC': 'under consideration for removal (https://github.com/emscripten-core/emscripten/issues/27366)',
}

# Settings that don't need to be externalized when serializing to json because they
Expand Down