Mark
unread,May 17, 2013, 2:58:56 PM5/17/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to discuss...@googlegroups.com
I have a situation where I want to use ice-lite in an outbound (from Chrome) media session. When I get back the SDP createOffer success, I inject a "a=ice-lite" just after the "c=" connection info line. I leave everything else the same, including the other ice attributes, then set that modified SDP via setLocalDescription into peerConnection
which later goes on to look for candidates (firing out STUN packets
etc). So how do I tell it to not look for candidates? I'm on "Chrome 27.0.1453.81" which seems to have the feature, so
clearly I'm not doing something right. Having the ice-ufrag and ice-pwd
are ok as my public server will respond to the direct ice bindings once the SDP response comes back from it.
For example:
[...]
c=IN IP4 0.0.0.0
a=ice-lite
a=rtcp:1 IN IP4 0.0.0.0
a=ice-ufrag:jPn+jecWlzyelGmu
a=ice-pwd:dOKCeSJ3Sfk5LgU0PeYQlGEZ
a=ice-options:google-ice
a=sendrecv
[...]
So other than adding ice-lite, what other modifications are required? I welcome any pointers, thanks, Mark.