From 5b67bc455b4eab14eaf7e1545b3f14eb0ee8112c Mon Sep 17 00:00:00 2001 From: aler9 <46489434+aler9@users.noreply.github.com> Date: Sun, 4 Oct 2020 22:50:28 +0200 Subject: [PATCH] fix docs --- utils.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/utils.go b/utils.go index 25c632df..f37a23be 100644 --- a/utils.go +++ b/utils.go @@ -10,10 +10,10 @@ type StreamProtocol = headers.StreamProtocol const ( // StreamProtocolUDP means that the stream uses the UDP protocol - StreamProtocolUDP = headers.StreamProtocolUDP + StreamProtocolUDP StreamProtocol = headers.StreamProtocolUDP // StreamProtocolTCP means that the stream uses the TCP protocol - StreamProtocolTCP = headers.StreamProtocolTCP + StreamProtocolTCP StreamProtocol = headers.StreamProtocolTCP ) // StreamCast is the cast method of a stream. @@ -21,10 +21,10 @@ type StreamCast = headers.StreamCast const ( // StreamUnicast means that the stream is unicasted - StreamUnicast = headers.StreamUnicast + StreamUnicast StreamCast = headers.StreamUnicast // StreamMulticast means that the stream is multicasted - StreamMulticast = headers.StreamMulticast + StreamMulticast StreamCast = headers.StreamMulticast ) // StreamType is the stream type. @@ -32,10 +32,10 @@ type StreamType = base.StreamType const ( // StreamTypeRtp means that the stream contains RTP packets - StreamTypeRtp = base.StreamTypeRtp + StreamTypeRtp StreamType = base.StreamTypeRtp // StreamTypeRtcp means that the stream contains RTCP packets - StreamTypeRtcp = base.StreamTypeRtcp + StreamTypeRtcp StreamType = base.StreamTypeRtcp ) // TransportMode is a transport mode.