Files
go2rtc/pkg/hap/camera/ch116_rtp_config.go
2023-09-01 10:38:38 +03:00

15 lines
268 B
Go

package camera
const TypeSupportedRTPConfiguration = "116"
//goland:noinspection ALL
const (
CryptoAES_CM_128_HMAC_SHA1_80 = 0
CryptoAES_CM_256_HMAC_SHA1_80 = 1
CryptoNone = 2
)
type SupportedRTPConfig struct {
CryptoType []byte `tlv8:"2"`
}