mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-13 18:24:58 +00:00
13 lines
309 B
Go
13 lines
309 B
Go
package message
|
|
|
|
// user control types.
|
|
const (
|
|
UserControlTypeStreamBegin = 0
|
|
UserControlTypeStreamEOF = 1
|
|
UserControlTypeStreamDry = 2
|
|
UserControlTypeSetBufferLength = 3
|
|
UserControlTypeStreamIsRecorded = 4
|
|
UserControlTypePingRequest = 6
|
|
UserControlTypePingResponse = 7
|
|
)
|