Packages

Behaviour to make it easy to create custom RTMP clients

Current section

Files

Jump to
eml_gen_rtmp_client lib gen_rtmp_client connection_info.ex
Raw

lib/gen_rtmp_client/connection_info.ex

defmodule GenRtmpClient.ConnectionInfo do
@type t :: %__MODULE__{
host: String.t,
port: pos_integer,
app_name: Rtmp.app_name,
connection_id: String.t
}
defstruct host: nil,
port: nil,
app_name: nil,
connection_id: nil
end