adds parsing of u= line (URI in SDP)

git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@1289 8eb893ce-cfd4-0310-b710-fb5ebe64c474
sayer/1.4-spce2.6
Stefan Sayer 18 years ago
parent d6010e4aaf
commit 9ee91e2b27

@ -433,8 +433,16 @@ static bool parse_sdp_line_ex(AmSdp* sdp_msg, char*& s)
s = next;
break;
}
case 'u': {
DBG("parse_sdp_line_ex: found uri\n");
s = is_eql_next(s);
next = get_next_line(s);
sdp_msg->uri = string(s, int(next-s)-2);
s = next;
} break;
case 'i':
case 'u':
case 'e':
case 'p':
case 'b':

Loading…
Cancel
Save