tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 2c9a0905821b6bd11754c0390bfa4684b544166e
parent 1aedd31b981e99563bb42b56cf8eb5884a2de0d1
Author: Dan Baker <dbaker@mozilla.com>
Date:   Mon,  1 Dec 2025 20:09:37 -0700

Bug 2000941 - Vendor libwebrtc from 2fa3469ae2

Upstream commit: https://webrtc.googlesource.com/src/+/2fa3469ae2db8e23f9989b6a3932e98cd26d131e
    Revoke deprecation of "reliable"

    It was too hard to find all the occurences.

    Bug: None
    Change-Id: I7e4868231a14005f6ae72da5e75458919da11e5e
    Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/409140
    Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org>
    Commit-Queue: Harald Alvestrand <hta@webrtc.org>
    Cr-Commit-Position: refs/heads/main@{#45638}

Diffstat:
Mthird_party/libwebrtc/README.mozilla.last-vendor | 4++--
Mthird_party/libwebrtc/api/data_channel_interface.h | 2+-
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/third_party/libwebrtc/README.mozilla.last-vendor b/third_party/libwebrtc/README.mozilla.last-vendor @@ -1,4 +1,4 @@ # ./mach python dom/media/webrtc/third_party_build/vendor-libwebrtc.py --from-local /Users/danielbaker/elm/.moz-fast-forward/moz-libwebrtc --commit mozpatches libwebrtc -libwebrtc updated from /Users/danielbaker/elm/.moz-fast-forward/moz-libwebrtc commit mozpatches on 2025-12-02T03:06:25.301071+00:00. +libwebrtc updated from /Users/danielbaker/elm/.moz-fast-forward/moz-libwebrtc commit mozpatches on 2025-12-02T03:09:17.078024+00:00. # base of lastest vendoring -180423f367 +2fa3469ae2 diff --git a/third_party/libwebrtc/api/data_channel_interface.h b/third_party/libwebrtc/api/data_channel_interface.h @@ -37,7 +37,7 @@ namespace webrtc { struct DataChannelInit { // Deprecated. Reliability is assumed, and channel will be unreliable if // maxRetransmitTime or MaxRetransmits is set. - [[deprecated]] bool reliable = false; + bool reliable = false; // True if ordered delivery is required. bool ordered = true;