go-libp2p-core/event/reachability.go

14 lines
329 B
Go
Raw Normal View History

2020-03-05 04:43:11 +08:00
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
}