9e3b5e0170
- Introduced CAMERA_TEST_REPORT.md and COMPREHENSIVE_TEST_SUMMARY.md to document testing results for the Bosch FLEXIDOME indoor 5100i IR camera. - Added detailed analysis of ONVIF Media Service operations and implementation status in MEDIA_OPERATIONS_ANALYSIS.md and MEDIA_WSDL_OPERATIONS_ANALYSIS.md. - Updated implementation status documentation to reflect the completion of all 79 operations in the ONVIF Media Service. - Enhanced existing comments and documentation across various files for better clarity and consistency.
13 lines
418 B
Go
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")
|
|
)
|