Closed
Bug 1154529
Opened 10 years ago
Closed 10 years ago
`rtcp:<port>` attribute is not being added to the Session Description when the ICE candidate lines have non-contiguous ports
Categories
(Firefox :: Untriaged, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 1096795
People
(Reporter: pgpb.padilla, Unassigned)
Details
User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36
Steps to reproduce:
* Create an Offer using Firefox v38b3
Actual results:
* The SDP generated by the offer has non-contiguous ports for the ICE candidate lines:
c=IN IP4 A.B.C.D
a=candidate:0 1 UDP 2130444543 A.B.C.D 61864 typ host
a=candidate:0 2 UDP 2130444542 A.B.C.D 60568 typ host
* The media description does not contain the `rtcp:<port>` attribute as specified in: https://tools.ietf.org/html/rfc4566#section-5.14
Expected results:
We should have a media description containing the `rtcp:<port>` attribute or the ports should be contiguous, e.g.,
c=IN IP4 A.B.C.D
a=rtcp:49657 IN IP4 A.B.C.D
a=candidate:0 1 UDP 2130444543 A.B.C.D 61864 typ host
a=candidate:0 2 UDP 2130444542 A.B.C.D 60568 typ host
| Reporter | ||
Comment 1•10 years ago
|
||
You can use the following link to generate the Offer: http://webrtc.github.io/samples/src/content/peerconnection/munge-sdp/
| Reporter | ||
Updated•10 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 10 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•