mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 22:56:40 +00:00
15 lines
511 B
Go
15 lines
511 B
Go
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
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")
|
|
errFailedCast = errors.New("mDNS: failed to cast listener to UDPAddr")
|
|
)
|