mirror of
https://github.com/kerberos-io/onvif.git
synced 2026-08-23 15:08:33 +00: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"
|
|
)
|