kusuzhu / sipdroid

Automatically exported from code.google.com/p/sipdroid
GNU General Public License v3.0
0 stars 0 forks source link

s line in SDP not according to recommendation in RFC 3264 #696

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.Set up a call
2.Capture the invite with wireshark
3.Look at the s line of the SDP

What is the expected output? What do you see instead?

According to RFC 3264:
The SDP "s=" line conveys the subject of the session, which is
reasonably defined for multicast, but ill defined for unicast.  For
unicast sessions, it is RECOMMENDED that it consist of a single space
character (0x20) or a dash (-).
The output from sipdroid is "s=Session SIP/SDP".
This creates problems to some other terminals.

Please use labels and text to provide additional information.

This is set in SessionDescriptor.java.
Solution would be to remove "Session SIP/SDP" in SessionNameField call. 

Original issue reported on code.google.com by mandrajg@gmail.com on 15 Oct 2010 at 3:05