View Source ExSDP.Timing (ExSDP v0.15.0)

This module represents the Timing field of SDP that specifies the start and end time of the session.

For more details please see RFC4566 Section 5.9

Summary

Types

@type t() :: %ExSDP.Timing{
  start_time: non_neg_integer(),
  stop_time: non_neg_integer()
}

Functions

@spec parse(binary()) :: {:ok, t()} | {:error, :invalid_timing}