mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-09-13 21:10:12 +00:00

* [NOD-1293] Use addressManager's GetBestLocalAddress. * [NOD-1293] Copy the initListeners function from the old p2p to the address manager. * [NOD-1293] Remove debug logs. * [NOD-1293] Remove unused import. * [NOD-1293] Fix a comment.
58 lines
2.1 KiB
Go
58 lines
2.1 KiB
Go
package addressexchange
|
|
|
|
import (
|
|
"github.com/kaspanet/kaspad/app/appmessage"
|
|
"github.com/kaspanet/kaspad/app/protocol/common"
|
|
peerpkg "github.com/kaspanet/kaspad/app/protocol/peer"
|
|
"github.com/kaspanet/kaspad/app/protocol/protocolerrors"
|
|
"github.com/kaspanet/kaspad/infrastructure/config"
|
|
"github.com/kaspanet/kaspad/infrastructure/network/addressmanager"
|
|
"github.com/kaspanet/kaspad/infrastructure/network/netadapter/router"
|
|
)
|
|
|
|
// ReceiveAddressesContext is the interface for the context needed for the ReceiveAddresses flow.
|
|
type ReceiveAddressesContext interface {
|
|
Config() *config.Config
|
|
AddressManager() *addressmanager.AddressManager
|
|
}
|
|
|
|
// ReceiveAddresses asks a peer for more addresses if needed.
|
|
func ReceiveAddresses(context ReceiveAddressesContext, incomingRoute *router.Route, outgoingRoute *router.Route,
|
|
peer *peerpkg.Peer) error {
|
|
|
|
if !context.AddressManager().NeedMoreAddresses() {
|
|
return nil
|
|
}
|
|
|
|
subnetworkID := peer.SubnetworkID()
|
|
msgGetAddresses := appmessage.NewMsgRequestAddresses(false, subnetworkID)
|
|
err := outgoingRoute.Enqueue(msgGetAddresses)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
message, err := incomingRoute.DequeueWithTimeout(common.DefaultTimeout)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
msgAddresses := message.(*appmessage.MsgAddresses)
|
|
if len(msgAddresses.AddrList) > addressmanager.GetAddressesMax {
|
|
return protocolerrors.Errorf(true, "address count exceeded %d", addressmanager.GetAddressesMax)
|
|
}
|
|
|
|
if msgAddresses.IncludeAllSubnetworks {
|
|
return protocolerrors.Errorf(true, "got unexpected "+
|
|
"IncludeAllSubnetworks=true in [%s] command", msgAddresses.Command())
|
|
}
|
|
if !msgAddresses.SubnetworkID.IsEqual(context.Config().SubnetworkID) && msgAddresses.SubnetworkID != nil {
|
|
return protocolerrors.Errorf(false, "only full nodes and %s subnetwork IDs "+
|
|
"are allowed in [%s] command, but got subnetwork ID %s",
|
|
context.Config().SubnetworkID, msgAddresses.Command(), msgAddresses.SubnetworkID)
|
|
}
|
|
|
|
sourceAddress := peer.Connection().NetAddress()
|
|
context.AddressManager().AddAddresses(msgAddresses.AddrList, sourceAddress, msgAddresses.SubnetworkID)
|
|
return nil
|
|
}
|