mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-06-03 20:56:42 +00:00

* [NOD-1223] Delete unused files/packages. * [NOD-1223] Move signal and limits to the os package. * [NOD-1223] Put database and dbaccess into the db package. * [NOD-1223] Fold the logs package into the logger package. * [NOD-1223] Rename domainmessage to appmessage. * [NOD-1223] Rename to/from DomainMessage to AppMessage. * [NOD-1223] Move appmessage to the app packge. * [NOD-1223] Move protocol to the app packge. * [NOD-1223] Move the network package to the infrastructure packge. * [NOD-1223] Rename cmd to executables. * [NOD-1223] Fix go.doc in the logger package.
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 excceeded %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
|
|
}
|