Do not use file mode for SRT
This commit is contained in:
parent
97ac6f370d
commit
3f5d317250
|
@ -45,16 +45,12 @@ func splitHostPort(hostport string) (string, uint16) {
|
||||||
|
|
||||||
// Serve SRT server
|
// Serve SRT server
|
||||||
func Serve(cfg *Options, authBackend auth.Backend, forwardingChannel chan Packet) {
|
func Serve(cfg *Options, authBackend auth.Backend, forwardingChannel chan Packet) {
|
||||||
// Start SRT in listen mode
|
// Start SRT in listening mode
|
||||||
log.Printf("SRT server listening on %s", cfg.ListenAddress)
|
log.Printf("SRT server listening on %s", cfg.ListenAddress)
|
||||||
host, port := splitHostPort(cfg.ListenAddress)
|
host, port := splitHostPort(cfg.ListenAddress)
|
||||||
options := map[string]string{
|
sck := srtgo.NewSrtSocket(host, port, nil)
|
||||||
"transtype": "file",
|
|
||||||
"mode": "listener",
|
|
||||||
}
|
|
||||||
sck := srtgo.NewSrtSocket(host, port, options)
|
|
||||||
if err := sck.Listen(cfg.MaxClients); err != nil {
|
if err := sck.Listen(cfg.MaxClients); err != nil {
|
||||||
log.Fatal("Unable to listen to SRT clients:", err)
|
log.Fatal("Unable to listen for SRT clients:", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// FIXME: Get the stream type
|
// FIXME: Get the stream type
|
||||||
|
|
Loading…
Reference in New Issue