null.go 1008 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
package connmgr

import (
	"context"

	"github.com/libp2p/go-libp2p-core/network"
	"github.com/libp2p/go-libp2p-core/peer"
)

// NullConnMgr is a ConnMgr that provides no functionality.
type NullConnMgr struct{}

var _ ConnManager = (*NullConnMgr)(nil)

func (_ NullConnMgr) TagPeer(peer.ID, string, int)             {}
func (_ NullConnMgr) UntagPeer(peer.ID, string)                {}
func (_ NullConnMgr) UpsertTag(peer.ID, string, func(int) int) {}
func (_ NullConnMgr) GetTagInfo(peer.ID) *TagInfo              { return &TagInfo{} }
func (_ NullConnMgr) TrimOpenConns(ctx context.Context)        {}
func (_ NullConnMgr) Notifee() network.Notifiee                { return network.GlobalNoopNotifiee }
func (_ NullConnMgr) Protect(peer.ID, string)                  {}
func (_ NullConnMgr) Unprotect(peer.ID, string) bool           { return false }
23
func (_ NullConnMgr) IsProtected(peer.ID, string) bool         { return false }
24
func (_ NullConnMgr) Close() error                             { return nil }