ddd1d92ff1
The idea here is to preserve the history of `dev` branch development and its code when merging with the `master`. Later this code could be moved into the masters code where appropriate.
25 lines
893 B
Go
Executable file
25 lines
893 B
Go
Executable file
package connmgr
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
// Config contains all methods which will be set by the caller to setup the connection manager.
|
|
type Config struct {
|
|
// GetAddress will return a single address for the connection manager to connect to
|
|
// This will be the source of addresses for the connection manager
|
|
GetAddress func() (string, error)
|
|
|
|
// OnConnection is called by the connection manager when we successfully connect to a peer
|
|
// The caller should ideally inform the address manager that we have connected to this address in this function
|
|
OnConnection func(conn net.Conn, addr string)
|
|
|
|
// OnAccept will take an established connection
|
|
OnAccept func(net.Conn)
|
|
|
|
// AddressPort is the address port of the local node in the format "address:port"
|
|
AddressPort string
|
|
|
|
// DialTimeout is the amount of time to wait, before we can disconnect a pending dialed connection
|
|
DialTimeout int
|
|
}
|