Files
onvif-go/.claude/discovery copy/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

13 lines
418 B
Go

// Package discovery provides error definitions for the discovery package.
package discovery
import "errors"
var (
// ErrNoProbeMatches is returned when no probe matches are found during discovery.
ErrNoProbeMatches = errors.New("no probe matches found")
// ErrNetworkInterfaceNotFound is returned when a network interface is not found.
ErrNetworkInterfaceNotFound = errors.New("network interface not found")
)