mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-10 18:25:17 +00:00
14 lines
329 B
Go
14 lines
329 B
Go
package event
|
|
|
|
import (
|
|
"github.com/libp2p/go-libp2p/core/network"
|
|
)
|
|
|
|
// EvtLocalReachabilityChanged is an event struct to be emitted when the local's
|
|
// node reachability changes state.
|
|
//
|
|
// This event is usually emitted by the AutoNAT subsystem.
|
|
type EvtLocalReachabilityChanged struct {
|
|
Reachability network.Reachability
|
|
}
|