Files
onvif-go/.claude/cmd copy/onvif-cli/errors.go
T
ProtoTess 19db372cdc Add ONVIF types and structures for device capabilities and configurations
- Introduced comprehensive data structures for ONVIF device information, capabilities, media profiles, and configurations.
- Added types for device services, network settings, imaging options, audio/video configurations, and user management.
- Implemented structures for handling various ONVIF features including PTZ control, event subscriptions, and analytics configurations.
- Enhanced support for network protocols, security settings, and system logging.
2026-01-16 04:37:59 +00:00

21 lines
803 B
Go

package main
import "errors"
var (
// ErrNoNetworkInterfaces is returned when no network interfaces are found.
ErrNoNetworkInterfaces = errors.New("no network interfaces found")
// ErrNoCamerasFound is returned when no cameras are found on any interface.
ErrNoCamerasFound = errors.New("no cameras found on any interface")
// ErrNoActiveInterfaces is returned when no active interfaces are available for discovery.
ErrNoActiveInterfaces = errors.New("no active interfaces available for discovery")
// ErrNoProfilesFound is returned when no profiles are found.
ErrNoProfilesFound = errors.New("no profiles found")
// ErrNoVideoSourceConfiguration is returned when no video source configuration is found.
ErrNoVideoSourceConfiguration = errors.New("no video source configuration found")
)