Skip check RTSP auth for localhost requests
This commit is contained in:
+2
-1
@@ -56,7 +56,8 @@ func Init() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
c := rtsp.NewServer(conn)
|
c := rtsp.NewServer(conn)
|
||||||
if conf.Mod.Username != "" {
|
// skip check auth for localhost
|
||||||
|
if conf.Mod.Username != "" && !conn.RemoteAddr().(*net.TCPAddr).IP.IsLoopback() {
|
||||||
c.Auth(conf.Mod.Username, conf.Mod.Password)
|
c.Auth(conf.Mod.Username, conf.Mod.Password)
|
||||||
}
|
}
|
||||||
go tcpHandler(c)
|
go tcpHandler(c)
|
||||||
|
|||||||
Reference in New Issue
Block a user