With futures 0.3, the AsyncRead/Write traits are no longer marker traits, so we can no longer easily support both, non-blocking and blocking APIs. The code can however still be used in a blocking way buy just calling `now_or_never` on any futures it returns, which will block if the underlying streams are blocking. |
||
---|---|---|
examples | ||
src | ||
.gitignore | ||
Cargo.toml | ||
LICENSE | ||
README.md |
README.md
rtp
A Rust implementation of RTP and profiles derived from it.
RFC
- RTP: https://tools.ietf.org/html/rfc3550
- SRTP: https://tools.ietf.org/html/rfc3711
- AVP: https://tools.ietf.org/html/rfc3551
- AVPF: https://tools.ietf.org/html/rfc4585
- SAVPF: https://tools.ietf.org/html/rfc5124
- Multiplexing RTP and RTCP: https://tools.ietf.org/html/rfc5761
- DTLS-SRTP: https://tools.ietf.org/html/rfc5764