Files
onvif/constant.go
Cedric Verstraeten 8902e4e789 upgrade onvif library
2023-12-18 20:16:21 +01:00

10 lines
167 B
Go

package onvif
// Onvif Auth Mode
const (
DigestAuth = "digest"
UsernameTokenAuth = "usernametoken"
Both = "both"
NoAuth = "none"
)