mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 09:57:32 +09:00
Issue #1991 - Support TURN TLS Support in WebRTC Backport of Mozilla bug 1056934
This commit is contained in:
parent
1270657ba0
commit
2dc4713d14
16 changed files with 282 additions and 26 deletions
|
|
@ -137,6 +137,7 @@ class TestNat {
|
|||
refresh_on_ingress_(false),
|
||||
block_udp_(false),
|
||||
block_stun_(false),
|
||||
block_tcp_(false),
|
||||
delay_stun_resp_ms_(0),
|
||||
sockets_() {}
|
||||
|
||||
|
|
@ -168,6 +169,7 @@ class TestNat {
|
|||
bool refresh_on_ingress_;
|
||||
bool block_udp_;
|
||||
bool block_stun_;
|
||||
bool block_tcp_;
|
||||
/* Note: this can only delay a single response so far (bug 1253657) */
|
||||
uint32_t delay_stun_resp_ms_;
|
||||
|
||||
|
|
@ -319,6 +321,7 @@ class TestNrSocket : public NrSocketBase {
|
|||
// same nat.
|
||||
RefPtr<NrSocketBase> internal_socket_;
|
||||
RefPtr<TestNat> nat_;
|
||||
bool tls_;
|
||||
// Since our comparison logic is different depending on what kind of NAT
|
||||
// we simulate, and the STL does not make it very easy to switch out the
|
||||
// comparison function at runtime, and these lists are going to be very
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue