status-go/vendor/github.com/pion/mdns/errors.go

15 lines
511 B
Go
Raw Permalink Normal View History

2024-06-05 20:10:03 +00:00
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
// SPDX-License-Identifier: MIT
2022-03-10 09:44:48 +00:00
package mdns
import "errors"
var (
errJoiningMulticastGroup = errors.New("mDNS: failed to join multicast group")
errConnectionClosed = errors.New("mDNS: connection is closed")
errContextElapsed = errors.New("mDNS: context has elapsed")
errNilConfig = errors.New("mDNS: config must not be nil")
2024-05-15 23:15:00 +00:00
errFailedCast = errors.New("mDNS: failed to cast listener to UDPAddr")
2022-03-10 09:44:48 +00:00
)