From 524dbea0e102812fafe28ad3047fc27f8dd33e9c Mon Sep 17 00:00:00 2001 From: Saxon Date: Thu, 9 May 2019 12:28:31 +0930 Subject: [PATCH] protocol/rtcp/client.go: added comment for Log func signature type --- protocol/rtcp/client.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/protocol/rtcp/client.go b/protocol/rtcp/client.go index 4abc4651..7d6c995c 100644 --- a/protocol/rtcp/client.go +++ b/protocol/rtcp/client.go @@ -49,6 +49,8 @@ const ( receiverBufSize = 200 ) +// Log describes a function signature required by the RTCP for the purpose of +// logging. type Log func(lvl int8, msg string, args ...interface{}) // Client is an RTCP Client that will handle receiving SenderReports from a server