mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-25 12:32:01 -08:00
do not show error message in case of EOF
This commit is contained in:
parent
2a89e41a69
commit
142bc9961c
1 changed files with 3 additions and 1 deletions
|
|
@ -858,7 +858,9 @@ func (c *serverClient) handleRequest(req *gortsplib.Request) bool {
|
|||
for {
|
||||
frame, err := c.conn.ReadInterleavedFrame()
|
||||
if err != nil {
|
||||
c.log("ERR: %s", err)
|
||||
if err != io.EOF {
|
||||
c.log("ERR: %s", err)
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue