mirror of
https://github.com/kerberos-io/onvif.git
synced 2025-10-13 03:23:41 +08:00
14 lines
119 B
Go
14 lines
119 B
Go
package goonvif
|
|
|
|
import "net"
|
|
|
|
type Device struct {
|
|
|
|
xaddr net.IP
|
|
login string
|
|
password string
|
|
|
|
token [64]uint8
|
|
}
|
|
|