mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-12 18:00:12 +00:00
46 lines
1.1 KiB
Go
46 lines
1.1 KiB
Go
package message //nolint:dupl
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/bluenviron/mediamtx/internal/rtmp/rawmessage"
|
|
)
|
|
|
|
// UserControlPingRequest is a user control message.
|
|
type UserControlPingRequest struct {
|
|
ServerTime uint32
|
|
}
|
|
|
|
// Unmarshal implements Message.
|
|
func (m *UserControlPingRequest) Unmarshal(raw *rawmessage.Message) error {
|
|
if raw.ChunkStreamID != ControlChunkStreamID {
|
|
return fmt.Errorf("unexpected chunk stream ID")
|
|
}
|
|
|
|
if len(raw.Body) != 6 {
|
|
return fmt.Errorf("invalid body size")
|
|
}
|
|
|
|
m.ServerTime = uint32(raw.Body[2])<<24 | uint32(raw.Body[3])<<16 | uint32(raw.Body[4])<<8 | uint32(raw.Body[5])
|
|
|
|
return nil
|
|
}
|
|
|
|
// Marshal implements Message.
|
|
func (m UserControlPingRequest) Marshal() (*rawmessage.Message, error) {
|
|
buf := make([]byte, 6)
|
|
|
|
buf[0] = byte(UserControlTypePingRequest >> 8)
|
|
buf[1] = byte(UserControlTypePingRequest)
|
|
buf[2] = byte(m.ServerTime >> 24)
|
|
buf[3] = byte(m.ServerTime >> 16)
|
|
buf[4] = byte(m.ServerTime >> 8)
|
|
buf[5] = byte(m.ServerTime)
|
|
|
|
return &rawmessage.Message{
|
|
ChunkStreamID: ControlChunkStreamID,
|
|
Type: uint8(TypeUserControl),
|
|
Body: buf,
|
|
}, nil
|
|
}
|