diff --git a/pkg/rtsp/conn.go b/pkg/rtsp/conn.go index 2edf9215..85bd53a8 100644 --- a/pkg/rtsp/conn.go +++ b/pkg/rtsp/conn.go @@ -167,6 +167,12 @@ func (c *Conn) Handle() (err error) { return } c.Fire(req) + if req.Method == MethodOptions { + res := &tcp.Response{Request: req} + if err = c.WriteResponse(res); err != nil { + return + } + } continue default: