stream-server/rtmp/connect.go

10 lines
95 B
Go
Raw Normal View History

2023-08-09 16:00:21 +05:00
package rtmp
import (
"net"
)
2023-08-10 01:02:22 +05:00
func NegotiateConnect(conn net.Conn) (bool) {
return false
2023-08-09 16:00:21 +05:00
}