mirror of
https://github.com/libp2p/go-libp2p-core.git
synced 2025-01-28 04:30:08 +08:00
14 lines
612 B
Go
14 lines
612 B
Go
package event
|
|
|
|
import (
|
|
"github.com/libp2p/go-libp2p/core/event"
|
|
)
|
|
|
|
// EvtPeerIdentificationCompleted is emitted when the initial identification round for a peer is completed.
|
|
// Deprecated: use github.com/libp2p/go-libp2p/core/event.EvtPeerIdentificationCompleted instead
|
|
type EvtPeerIdentificationCompleted = event.EvtPeerIdentificationCompleted
|
|
|
|
// EvtPeerIdentificationFailed is emitted when the initial identification round for a peer failed.
|
|
// Deprecated: use github.com/libp2p/go-libp2p/core/event.EvtPeerIdentificationFailed instead
|
|
type EvtPeerIdentificationFailed = event.EvtPeerIdentificationFailed
|