15 lines
511 B
Go
Raw Normal View History

2024-06-05 16:10:03 -04:00
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
// SPDX-License-Identifier: MIT
2022-03-10 10:44:48 +01: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 19:15:00 -04:00
errFailedCast = errors.New("mDNS: failed to cast listener to UDPAddr")
2022-03-10 10:44:48 +01:00
)