remove ReadBufferCount; rename WriteBufferCount into WriteQueueSize (#384)

This commit is contained in:
Alessandro Ros
2023-08-26 12:21:05 +02:00
committed by aler9
parent 5d8f742d60
commit b97aed00fe
4 changed files with 15 additions and 35 deletions

View File

@@ -36,7 +36,7 @@ func newServerMulticastWriter(s *Server) (*serverMulticastWriter, error) {
return nil, err
}
wb, _ := ringbuffer.New(uint64(s.WriteBufferCount))
wb, _ := ringbuffer.New(uint64(s.WriteQueueSize))
h := &serverMulticastWriter{
rtpl: rtpl,