mirror of
https://github.com/kerberos-io/onvif.git
synced 2025-09-26 20:01:17 +08:00
10 lines
167 B
Go
10 lines
167 B
Go
package onvif
|
|
|
|
// Onvif Auth Mode
|
|
const (
|
|
DigestAuth = "digest"
|
|
UsernameTokenAuth = "usernametoken"
|
|
Both = "both"
|
|
NoAuth = "none"
|
|
)
|