mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-09-27 03:25:56 +08:00
21 lines
846 B
Go
21 lines
846 B
Go
package pkg
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNotFound = errors.New("not found")
|
|
ErrStopFromAPI = errors.New("stop from api")
|
|
ErrStreamExist = errors.New("stream exist")
|
|
ErrKick = errors.New("kick")
|
|
ErrDiscard = errors.New("discard")
|
|
ErrPublishTimeout = errors.New("publish timeout")
|
|
ErrPublishIdleTimeout = errors.New("publish idle timeout")
|
|
ErrPublishDelayCloseTimeout = errors.New("publish delay close timeout")
|
|
ErrSubscribeTimeout = errors.New("subscribe timeout")
|
|
ErrRestart = errors.New("restart")
|
|
ErrInterrupt = errors.New("interrupt")
|
|
ErrUnsupportCodec = errors.New("unsupport codec")
|
|
ErrMuted = errors.New("muted")
|
|
ErrorLost = errors.New("lost")
|
|
)
|