Remove useless comments in SRT

This commit is contained in:
Alexandre Iooss 2020-10-04 11:45:49 +02:00
parent 5cdb5282ef
commit db0937dd1a
No known key found for this signature in database
GPG Key ID: 6C79278F3FCDCC02
1 changed files with 4 additions and 4 deletions

View File

@ -63,22 +63,22 @@ func Serve(cfg *Options, authBackend auth.Backend, forwardingChannel chan Packet
// Wait for new connection
s, err := sck.Accept()
if err != nil {
// log.Println("Error occurred while accepting request:", err)
continue // break // FIXME: should not break here
// Something wrong happenned
continue
}
if !streamStarted {
// The first connection is the streamer
go acceptCallerSocket(s, clientDataChannels, &listeners, authBackend, forwardingChannel)
streamStarted = true
} else {
// All following connections are viewers
dataChannel := make(chan Packet, 2048)
clientDataChannels[listeners] = dataChannel
listeners++
go acceptListeningSocket(s, dataChannel)
}
}
sck.Close()
}
func acceptCallerSocket(s *srtgo.SrtSocket, clientDataChannels []chan Packet, listeners *int, authBackend auth.Backend, forwardingChannel chan Packet) {