19db372cdc
- 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.
12 lines
298 B
Go
12 lines
298 B
Go
package soap
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
// ErrHTTPRequestFailed is returned when an HTTP request fails.
|
|
ErrHTTPRequestFailed = errors.New("HTTP request failed")
|
|
|
|
// ErrEmptyResponseBody is returned when a response body is empty.
|
|
ErrEmptyResponseBody = errors.New("received empty response body")
|
|
)
|