Martin Thomson
9ec922dcb3
Bug 1129791 - Check connection state rather than context state. r=ekr
...
--HG--
extra : transplant_source : %E5RDV%AF%3B%9D%7C%0F%10%9BF3%BB%29%06%8C%92%CF1
2015-02-05 17:18:57 +11:00
Nicholas Nethercote
242708cf72
Bug 1127201 (attempt 2, part 1) - Replace most NS_ABORT_IF_FALSE calls with MOZ_ASSERT. r=Waldo.
...
--HG--
extra : rebase_source : 488e401ff87e31a2074c4108c4df0572d9536667
2015-02-09 14:34:50 -08:00
Andrew McCreight
d3826daa16
Back out Bug 1127201 (part 2) for various problems.
2015-02-06 15:04:32 -08:00
Nicholas Nethercote
d34f0301b8
Bug 1127201 (part 2) - Convert all NS_ABORT_IF_FALSE calls to MOZ_ASSERT. r=Waldo.
...
--HG--
extra : rebase_source : 99182e70335d2b5ff95f8c528ae992d37294be3a
2015-02-04 20:05:36 -08:00
Nils Ohlmeier [:drno]
96d001f3d4
Bug 1120065 - unit test for TURN deallocation. r=bwc
2015-01-30 12:36:00 +01:00
Nils Ohlmeier [:drno]
d6b2b87209
Bug 1120065 - release TURN resources on PC release. r=bwc
2015-01-27 01:18:00 +01:00
Nils Ohlmeier [:drno]
ba151bbff5
Bug 1120065 - removed dead function nr_ice_candidate_destroy_cb. r=bwc
2015-01-23 13:47:00 +01:00
Byron Campen [:bwc]
98910d890f
Bug 1099414: Ensure that NrSocketIpc is destroyed on STS, for consistency. r=ekr
...
--HG--
extra : rebase_source : e706370706dd0d9ec938798966c752f298a260bf
2014-12-23 16:22:02 -08:00
Byron Campen [:bwc]
c66aed798c
Bug 1099414: Use RefPtr logic instead of delete when nr_socket_local_create fails. r=ekr
...
--HG--
extra : rebase_source : 8be15d27527166b0dfb322b90e6f5244bcabcc95
2014-11-14 15:58:56 -08:00
Byron Campen [:bwc]
971f76a2b4
Bug 1126036: Queue runnables for starting gathering and checking in PCMedia until the proxy lookup is complete. r=mt
...
--HG--
extra : rebase_source : 3265e13f669d08c663ab908cf96d3fb26a683f16
2015-01-26 15:24:37 -08:00
Byron Campen [:bwc]
bf8ba31d3f
Bug 949703 - Part 2: Consolidate the two copies of DummySocket we have floating around. r=drno
...
--HG--
extra : rebase_source : 53ff83c3f788dfb06e5fee0a276176f8bac805fd
2014-12-19 11:11:02 -08:00
f649bed22d
Bug 949703 - Part 1: Use HTTP proxy for WebRTC TURN/TCP r=ekr
...
--HG--
extra : rebase_source : 607cd8e262fad408e605114ed0dabad249a10ec9
2015-01-21 16:26:00 -08:00
Wes Kocher
eedd56c941
Backed out 2 changesets (bug 949703) for mochitest-e10s-3 orange
...
Backed out changeset 6f5a7adab265 (bug 949703)
Backed out changeset 7933aeabf6bd (bug 949703)
2015-01-21 17:15:02 -08:00
Byron Campen [:bwc]
ca80783cb7
Bug 949703 - Part 2: Consolidate the two copies of DummySocket we have floating around. r=drno
2014-12-19 11:11:02 -08:00
1901ea4c92
Bug 949703 - Part 1: Use HTTP proxy for WebRTC TURN/TCP r=ekr
2015-01-18 11:51:00 -08:00
Brian Smith
6685425c82
Bug 1119776, Part 3: Avoid defining snprintf when MSVC provides it (WebRTC), r=rjesup
...
--HG--
extra : rebase_source : cf3ca4b5d25ba770cca22577c39693d871708ad2
2015-01-08 22:32:30 -08:00
Randell Jesup
9c505baf27
Bug 1030372: use explicit runnable and Release for ReadBlob to avoid wrong-thread release assert r=bsmedberg relanding on a CLOSED TREE
...
--HG--
extra : amend_source : 4351ac6c3a17885cd5a24d19c080ff8aa610de3f
2015-01-11 00:28:34 -05:00
Tom Schuster
967d0d250a
Backout changeset b4ebefd0f7e3:a8044fd506db Bug 1117607, Bug 1118087, Bug 1118092, Bug 1118105, Bug 1030372, Bug 1079627 on CLOSED TREE
2015-01-11 20:43:32 +01:00
Randell Jesup
0ef23256a4
Bug 1030372: use explicit runnable and Release for ReadBlob to avoid wrong-thread release assert r=bsmedberg
2015-01-11 00:28:34 -05:00
Masatoshi Kimura
bf312ad056
Bug 1120062 - Part 1: Remove most Nullptr.h includes. r=waldo
2015-01-11 11:34:52 +09:00
Ehsan Akhgari
4354953b4f
Bug 1118486 - Part 1: Use `= delete` instead of MOZ_DELETE directly; r=Waldo
...
Most of this patch (with the exception of dom/bindings/Codegen.py) was
generated by the following bash script:
#!/bin/bash
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "*/.git*" \
! -wholename "obj-*" \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert MOZ_DELETE '= delete'
2015-01-08 23:19:05 -05:00
Ehsan Akhgari
02203cdfb4
Bug 1119267 - Mark virtual overridden functions as MOZ_OVERRIDE in media; r=jesup
2015-01-08 23:10:52 -05:00
Martin Thomson
82879d45c3
Bug 1052610 - Disabling non-PFS cipher suites, r=ekr
...
--HG--
extra : rebase_source : 05b724914c08ca3e9c0b0f50ebdb5ed151b72b98
2014-12-29 09:38:37 -08:00
Ehsan Akhgari
fd1c6fd698
Bug 1109841 - Remove the C11 _Static_assert which checks a runtime condition; r=abr
...
clang-cl enables C11 and therefore complains on this code:
static_assert expression is not an integral constant expression.
2014-12-10 17:46:42 -05:00
Byron Campen [:bwc]
4d39bfe617
Bug 1091242 - Part 8: When running on tbpl, disable parts of ice_unittest that rely on external network. r=drno
2014-10-31 14:51:00 -07:00
Byron Campen [:bwc]
9f12762413
Bug 1091242 - Part 7: Wiring the build system together. r=jesup, r=ted
2014-11-17 17:03:28 -08:00
Byron Campen [:bwc]
3af28ea884
Bug 1091242 - Part 6: Wiring the new JSEP handler code in. See https://github.com/unicorn-wg/gecko-dev/tree/multistream_rebase for more history. r=jesup, r=smaug
2014-11-19 16:16:29 -08:00
Phil Ringnalda
5fe54ea0fd
Backed out 10 changesets (bug 1091242) for Android/b2g non-unified build bustage
...
CLOSED TREE
Backed out changeset 7f72b55c5de7 (bug 1091242)
Backed out changeset f1501aa24397 (bug 1091242)
Backed out changeset 7fde5994aee5 (bug 1091242)
Backed out changeset 59b415714087 (bug 1091242)
Backed out changeset dadb65fedc08 (bug 1091242)
Backed out changeset 21be81424e4e (bug 1091242)
Backed out changeset 498fb1dafba5 (bug 1091242)
Backed out changeset 8d0653eb85ab (bug 1091242)
Backed out changeset c82d484e135a (bug 1091242)
Backed out changeset 3e0c8932f1b1 (bug 1091242)
2014-12-08 20:53:07 -08:00
Byron Campen [:bwc]
a818fd6977
Bug 1091242 - Part 8: When running on tbpl, disable parts of ice_unittest that rely on external network. r=drno
2014-10-31 14:51:00 -07:00
Byron Campen [:bwc]
c29c3be2eb
Bug 1091242 - Part 7: Wiring the build system together. r=jesup, r=ted
2014-11-17 17:03:28 -08:00
Byron Campen [:bwc]
bb404e8254
Bug 1091242 - Part 6: Wiring the new JSEP handler code in. See https://github.com/unicorn-wg/gecko-dev/tree/multistream_rebase for more history. r=jesup, r=smaug
2014-11-19 16:16:29 -08:00
Trevor Saunders
1a013270b5
bug 1105074 - make more stuff final r=froydnj
2014-11-25 13:56:07 -05:00
Anuj Agarwal
e23a96845a
Bug 1028140 - Privitizing public destructor of DummySocket. r=bwc
2014-11-19 21:52:42 -05:00
Paul Kerr [:pkerr]
a3f7e93297
Bug 1023539: Fix occasional timeouts of TURN webrtc transports with one-way connections r=bwc
...
Run TURN relay reservation refresh logic when handling a Data Indication packet
2014-11-06 15:03:41 -08:00
Mike Hommey
47c853314f
Bug 1077148 part 4 - Add and use new moz.build templates for Gecko programs and libraries. r=gps
...
There are, sadly, many combinations of linkage in use throughout the tree.
The main differentiator, though, is between program/libraries related to
Gecko or not. Kind of. Some need mozglue, some don't. Some need dependent
linkage, some standalone.
Anyways, these new templates remove the need to manually define the
right dependencies against xpcomglue, nspr, mozalloc and mozglue
in most cases.
Places that build programs and were resetting MOZ_GLUE_PROGRAM_LDFLAGS
or that build libraries and were resetting MOZ_GLUE_LDFLAGS can now
just not use those Gecko-specific templates.
2014-10-30 13:06:12 +09:00
Eric Rahm
7fffd05532
Bug 806819 - Part 4: Add files that were excluded from unified builds back in. r=ehsan
2014-10-08 13:19:14 -07:00
Eric Rahm
8d715a7fe4
Bug 806819 - Part 3: Remove redundant FORCE_PR_LOG entries. r=ehsan
2014-10-08 13:17:32 -07:00
Wes Kocher
445e1466e9
Backed out 5 changesets (bug 806819) for WinXP test failures on a CLOSED TREE
...
Backed out changeset 009ae35b0c67 (bug 806819)
Backed out changeset 5a57f87f5061 (bug 806819)
Backed out changeset f06cd735b5b3 (bug 806819)
Backed out changeset e25a2a8d4af4 (bug 806819)
Backed out changeset 70a167982c3f (bug 806819)
2014-10-06 16:32:50 -07:00
Eric Rahm
53a247fb00
Bug 806819 - Part 4: Add files that were excluded from unified builds back in. r=ehsan
...
--HG--
extra : rebase_source : 49a3f57d94fc94702f1604175c4e206091b67197
2014-10-06 13:11:24 -07:00
Eric Rahm
80d2b8bba6
Bug 806819 - Part 3: Remove redundant FORCE_PR_LOG entries. r=ehsan
...
--HG--
extra : rebase_source : c96eea1c12ea8c19314393f0e8b4b57a4316a61d
2014-10-06 13:08:20 -07:00
EKR
fcfb4e0b1e
Bug 1027350 - Allow loopback addresses for ICE. r=bwc
...
--HG--
extra : rebase_source : 525e2d8455beff596c1ae13b4a8c4d062533a0df
2014-06-22 15:11:48 -07:00
Ryan VanderMeulen
70b6968f5b
Bug 1037618 - Skip ice_unittest on OSX. a=me
2014-09-15 12:13:43 -04:00
Byron Campen [:bwc]
90874fd582
Bug 1027300: Check for ioctl error return. r=mt
2014-08-29 13:40:15 -07:00
Byron Campen [:bwc]
462f51ddbd
Bug 1026774: Return errors on some rare failure cases in stun_get_mib_addrs. r=mt
2014-08-29 14:03:17 -07:00
Byron Campen [:bwc]
d731dc2940
Bug 1058331: Plug a leak in TransportLayerDtls::Setup, and remove a suppression. r=mt
2014-08-25 17:15:07 -07:00
Byron Campen [:bwc]
0da4f6fa16
Bug 1008789: Init username to 0, just in case. r=drno
2014-06-11 10:43:04 -07:00
Shih-Chiang Chien
5079db593c
Bug 1053454 - disable remote TCP socket creation before TURN-TCP is e10s ready. r=ekr.
2014-09-03 11:02:11 +08:00
Mike Hommey
0060683747
Bug 1059090 - Don't require SOURCES to be set for CPP_UNIT_TESTS and SIMPLE_PROGRAMS. r=mshal
2014-09-03 14:16:37 +09:00
Mike Hommey
ed70c5f377
Bug 1041941 - Use templates for programs, simple programs, libraries and C++ unit tests. r=gps
2014-09-03 14:10:54 +09:00
Ehsan Akhgari
f691bdfc0b
Bug 1061056 - Fix more bad implicit constructors in WebRTC; r=jesup
2014-09-01 17:43:17 -04:00