View Source Membrane.RTSP.Response (Membrane RTSP v0.3.2)
This module represents a RTSP response.
Link to this section Summary
Link to this section Types
@type t() :: %Membrane.RTSP.Response{ body: ExSDP.t() | binary(), headers: Membrane.RTSP.headers(), status: non_neg_integer(), version: term() }
Link to this section Functions
Retrieves the first header matching given name from a response.
iex> response = %Response{
...> status: 200,
...> version: "1.0",
...> headers: [{"header_name", "header_value"}]
...> }
iex> Response.get_header(response, "header_name")
{:ok, "header_value"}
iex> Response.get_header(response, "non_existent_header")
{:error, :no_such_header}
Parses RTSP response.
If the body is present it will be parsed according to Content-Type
header.
Currently only the application/sdp
is supported.