Crates.io | libsdp |
lib.rs | libsdp |
version | 0.1.2 |
source | src |
created_at | 2019-11-23 19:59:51.702882 |
updated_at | 2020-05-10 23:47:15.297852 |
description | A slim sdp parsing library, with a focus towards voip user agents. |
homepage | https://github.com/ByteHeathen/libsdp |
repository | https://github.com/ByteHeathen/libsdp |
max_upload_size | |
id | 183791 |
size | 73,872 |
WIP: This library is still a work in progress
libsdp is a parser for the Session Description Protocol, Mostly intended for SDP's use in SIP messages.
let sdp_data = "v=0\r
o=jdoe 2890844526 2890842807 IN IP4 10.47.16.5\r
s=SDP Seminar\r
i=A Seminar on the session description protocol\r
u=http://www.example.com/seminars/sdp.pdf\r
e=j.doe@example.com (Jane Doe)\r
c=IN IP4 224.2.17.12/127\r
t=2873397496 2873404696\r
a=recvonly\r
m=audio 49170 RTP/AVP 0\r
m=video 51372 RTP/AVP 99\r
a=rtpmap:99 h263-1998/90000\r\n";
if let Ok((_, sdp_msg)) = parse_sdp_offer(sdp_data.as_ref()) {
println!("{:?}", &sdp_msg);
}