Current section
Files
Jump to
Current section
Files
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