fix comments

This commit is contained in:
aler9
2021-12-06 14:01:56 +01:00
parent e9bb3e12bf
commit 8068b9b40e

View File

@@ -212,7 +212,7 @@ type Client struct {
tcpReadBuffer *multibuffer.MultiBuffer tcpReadBuffer *multibuffer.MultiBuffer
tcpWriteMutex sync.Mutex tcpWriteMutex sync.Mutex
writeMutex sync.RWMutex // publish writeMutex sync.RWMutex // publish
writeFrameAllowed bool // publilsh writeFrameAllowed bool // publish
udpReportTimer *time.Timer udpReportTimer *time.Timer
checkStreamTimer *time.Timer checkStreamTimer *time.Timer
checkStreamInitial bool checkStreamInitial bool
@@ -544,7 +544,7 @@ func (c *Client) run() {
case <-c.keepaliveTimer.C: case <-c.keepaliveTimer.C:
_, err := c.do(&base.Request{ _, err := c.do(&base.Request{
Method: func() base.Method { Method: func() base.Method {
// the vlc integrated rtsp server requires GET_PARAMETER // the VLC integrated rtsp server requires GET_PARAMETER
if c.useGetParameter { if c.useGetParameter {
return base.GetParameter return base.GetParameter
} }