Packages

Library providing the capability to process and perform RTMP handshakes

Current section

Files

Jump to
eml_rtmp_handshake lib rtmp_handshake handshake_result.ex
Raw

lib/rtmp_handshake/handshake_result.ex

defmodule RtmpHandshake.HandshakeResult do
@type t :: %RtmpHandshake.HandshakeResult{
peer_start_timestamp: nil | non_neg_integer(),
remaining_binary: <<>>
}
defstruct peer_start_timestamp: nil,
remaining_binary: <<>>
end