Don't complain about ErrClosedPipe in RTCP receiver.
This simply indicates that the server closed the connection before we received the close indication from the client.
This commit is contained in:
+2
-2
@@ -730,7 +730,7 @@ func rtcpUpListener(conn *rtpUpConnection, track *rtpUpTrack, r *webrtc.RTPRecei
|
||||
firstSR := false
|
||||
n, _, err := r.Read(buf)
|
||||
if err != nil {
|
||||
if err != io.EOF {
|
||||
if err != io.EOF && err != io.ErrClosedPipe {
|
||||
log.Printf("Read RTCP: %v", err)
|
||||
}
|
||||
return
|
||||
@@ -1016,7 +1016,7 @@ func rtcpDownListener(conn *rtpDownConnection, track *rtpDownTrack, s *webrtc.RT
|
||||
for {
|
||||
n, _, err := s.Read(buf)
|
||||
if err != nil {
|
||||
if err != io.EOF {
|
||||
if err != io.EOF && err != io.ErrClosedPipe {
|
||||
log.Printf("Read RTCP: %v", err)
|
||||
}
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user