2020-01-16 09:29:26 +08:00
|
|
|
package event
|
|
|
|
|
2022-08-18 23:54:48 +08:00
|
|
|
import (
|
|
|
|
"github.com/libp2p/go-libp2p/core/event"
|
|
|
|
)
|
2020-01-16 09:29:26 +08:00
|
|
|
|
|
|
|
// EvtPeerIdentificationCompleted is emitted when the initial identification round for a peer is completed.
|
2022-08-18 23:54:48 +08:00
|
|
|
// Deprecated: use github.com/libp2p/go-libp2p/core/event.EvtPeerIdentificationCompleted instead
|
|
|
|
type EvtPeerIdentificationCompleted = event.EvtPeerIdentificationCompleted
|
2020-01-16 09:29:26 +08:00
|
|
|
|
|
|
|
// EvtPeerIdentificationFailed is emitted when the initial identification round for a peer failed.
|
2022-08-18 23:54:48 +08:00
|
|
|
// Deprecated: use github.com/libp2p/go-libp2p/core/event.EvtPeerIdentificationFailed instead
|
|
|
|
type EvtPeerIdentificationFailed = event.EvtPeerIdentificationFailed
|