mirror of
https://github.com/safing/portmaster
synced 2025-04-19 10:29:11 +00:00
21 lines
787 B
Go
21 lines
787 B
Go
package hub
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
// ErrMissingInfo signifies that the hub is missing the HubAnnouncement.
|
|
ErrMissingInfo = errors.New("hub has no announcement")
|
|
|
|
// ErrMissingTransports signifies that the hub announcement did not specify any transports.
|
|
ErrMissingTransports = errors.New("hub announcement has no transports")
|
|
|
|
// ErrMissingIPs signifies that the hub announcement did not specify any IPs,
|
|
// or none of the IPs is supported by the client.
|
|
ErrMissingIPs = errors.New("hub announcement has no (supported) IPs")
|
|
|
|
// ErrTemporaryValidationError is returned when a validation error might be temporary.
|
|
ErrTemporaryValidationError = errors.New("temporary validation error")
|
|
|
|
// ErrOldData is returned when received data is outdated.
|
|
ErrOldData = errors.New("")
|
|
)
|