1
0
mirror of https://gitlab.crans.org/nounous/ghostream.git synced 2025-06-27 19:12:07 +02:00

Separate statistics per stream

This commit is contained in:
Yohann D'ANELLO
2020-10-05 22:08:39 +02:00
parent 022f6fb098
commit 0a1329b929
3 changed files with 5 additions and 4 deletions

View File

@ -38,8 +38,8 @@ func removeTrack(tracks []*webrtc.Track, track *webrtc.Track) []*webrtc.Track {
}
// GetNumberConnectedSessions get the number of currently connected clients
func GetNumberConnectedSessions() int {
return len(videoTracks)
func GetNumberConnectedSessions(streamID string) int {
return len(videoTracks[streamID])
}
// newPeerHandler is called when server receive a new session description