mirror of
https://github.com/libp2p/go-libp2p-core.git
synced 2025-03-14 11:10:05 +08:00
13 lines
411 B
Go
13 lines
411 B
Go
package event
|
|
|
|
import (
|
|
"github.com/libp2p/go-libp2p/core/event"
|
|
)
|
|
|
|
// 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.
|
|
// Deprecated: use github.com/libp2p/go-libp2p/core/event.EvtLocalReachabilityChanged instead
|
|
type EvtLocalReachabilityChanged = event.EvtLocalReachabilityChanged
|