status-go/vendor/github.com/waku-org/go-libp2p-rendezvous/db/dbi.go

22 lines
532 B
Go

package dbi
import (
"github.com/libp2p/go-libp2p/core/peer"
)
type RegistrationRecord struct {
Id peer.ID
SignedPeerRecord []byte
Ns string
Ttl int
}
type DB interface {
Close() error
Register(p peer.ID, ns string, signedPeerRecord []byte, ttl int) (uint64, error)
Unregister(p peer.ID, ns string) error
CountRegistrations(p peer.ID) (int, error)
Discover(ns string, cookie []byte, limit int) ([]RegistrationRecord, []byte, error)
ValidCookie(ns string, cookie []byte) bool
}