Skip to content

Commit

Permalink
feat: allow passing options to memoryAddrBook (#3062)
Browse files Browse the repository at this point in the history
Co-authored-by: Daniel N <2color@users.noreply.github.com>
  • Loading branch information
2color and 2color authored Nov 25, 2024
1 parent 288868c commit 666d1ed
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions p2p/host/peerstore/pstoremem/addr_book.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ type memoryAddrBook struct {
var _ peerstore.AddrBook = (*memoryAddrBook)(nil)
var _ peerstore.CertifiedAddrBook = (*memoryAddrBook)(nil)

func NewAddrBook() *memoryAddrBook {
func NewAddrBook(opts ...AddrBookOption) *memoryAddrBook {
ctx, cancel := context.WithCancel(context.Background())

ab := &memoryAddrBook{
Expand All @@ -211,8 +211,12 @@ func NewAddrBook() *memoryAddrBook {
cancel: cancel,
clock: realclock{},
maxUnconnectedAddrs: defaultMaxUnconnectedAddrs,
maxSignedPeerRecords: defaultMaxUnconnectedAddrs,
maxSignedPeerRecords: defaultMaxSignedPeerRecords,
}
for _, opt := range opts {
opt(ab)
}

ab.refCount.Add(1)
go ab.background(ctx)
return ab
Expand Down

0 comments on commit 666d1ed

Please sign in to comment.