mirror of
https://github.com/livekit/livekit.git
synced 2026-03-30 19:55:41 +00:00
* configurable node track limit * sample config * todos * end of file new line * default max num tracks * bandwidth limit * client message for limit exceeded node * 10 Gbps default network limit
15 lines
702 B
Go
15 lines
702 B
Go
package rtc
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrRoomClosed = errors.New("room has already closed")
|
|
ErrPermissionDenied = errors.New("no permissions to access the room")
|
|
ErrMaxParticipantsExceeded = errors.New("room has exceeded its max participants")
|
|
ErrLimitExceeded = errors.New("node has exceeded its configured limit")
|
|
ErrAlreadyJoined = errors.New("a participant with the same identity is already in the room")
|
|
ErrUnexpectedOffer = errors.New("expected answer SDP, received offer")
|
|
ErrDataChannelUnavailable = errors.New("data channel is not available")
|
|
ErrCannotSubscribe = errors.New("participant does not have permission to subscribe")
|
|
)
|