lbcd/connmgr
Roy Lee e323751218 ci: gofmt with go 1.19
Go 1.19 introduces various updates to gofmt.
2022-08-07 23:40:53 -07:00
..
connmanager.go connmgr: check for canceled connection before connect 2019-04-09 19:54:18 -07:00
connmanager_test.go [lbry] align port settings between lbcd, lbcctl, and lbcwallet 2022-05-24 00:01:46 -07:00
doc.go ci: gofmt with go 1.19 2022-08-07 23:40:53 -07:00
dynamicbanscore.go BUG:dynamicbanscore deadlock 2020-03-09 13:41:13 -04:00
dynamicbanscore_test.go BUG:dynamicbanscore deadlock 2020-03-09 13:41:13 -04:00
log.go connmgr: Refactor connection management into pkg 2016-10-22 01:11:57 -05:00
README.md [lbry] docs: update docs for LBRY 2022-05-24 00:01:46 -07:00
seed.go [lbry] rename btcd to lbcd 2022-05-23 23:53:30 -07:00
tor.go reduce redundant memory allocatio - resolves btcsuite/btcd#1699 2022-05-23 21:46:22 -07:00

connmgr

ISC License

Package connmgr implements a generic network connection manager.

Overview

Connection Manager handles all the general connection concerns such as maintaining a set number of outbound connections, sourcing peers, banning, limiting max connections, tor lookup, etc.

The package provides a generic connection manager which is able to accept connection requests from a source or a set of given addresses, dial them and notify the caller on connections. The main intended use is to initialize a pool of active connections and maintain them to remain connected to the P2P network.

In addition, the connection manager provides the following utilities:

  • Notifications on connections or disconnections
  • Handle failures and retry new addresses from the source
  • Connect only to specified addresses
  • Permanent connections with increasing backoff retry timers
  • Disconnect or Remove an established connection