Source File
protocol.go
Belonging Package
github.com/libp2p/go-libp2p/core/event
package eventimport (peerprotocol)// EvtPeerProtocolsUpdated should be emitted when a peer we're connected to adds or removes protocols from their stack.type EvtPeerProtocolsUpdated struct {// Peer is the peer whose protocols were updated.Peer peer.ID// Added enumerates the protocols that were added by this peer.Added []protocol.ID// Removed enumerates the protocols that were removed by this peer.Removed []protocol.ID}// EvtLocalProtocolsUpdated should be emitted when stream handlers are attached or detached from the local host.// For handlers attached with a matcher predicate (host.SetStreamHandlerMatch()), only the protocol ID will be// included in this event.type EvtLocalProtocolsUpdated struct {// Added enumerates the protocols that were added locally.Added []protocol.ID// Removed enumerates the protocols that were removed locally.Removed []protocol.ID}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |