rtsp-rs
rtsp-rs copied to clipboard
An RTSP 2.0 implementation in Rust
With new version of uriparse, support for reference resolution from URIs was added. A lot of RTSP headers deal with relative references and it will be needed to support resolution...
Specification states that if a message is received with a body when it is not allowed, it should be discarded. The protocol object should handle this, since the decoder does...
This would simply be a wrapper around creating a client, sending a request, and waiting for the response before closing. All requests from the server during this period would be...
For the time being, just provide a `connect_secure` function that uses TLS. It may be nice to provide an abstracted `Connector` to allow for other cases like tunneling RTSP over...
The client configuration should act as a superset of the protocol configuration with some additional options. The only other option I can think of at the moment is to set...
Right now, it isn't convenient checking for equality between requests/responses that use typed headers. The equality is a simple byte to byte comparison of the raw header values, but I'd...
Once constant generics land on nightly, add TryFrom implementations from arbitrarily sized array slices for a lot of the types.