mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-09-14 21:40:11 +00:00

* [NOD-1223] Move all network stuff into a new network package. * [NOD-1223] Delete the unused package testutil. * [NOD-1223] Move infrastructure stuff into a new instrastructure package. * [NOD-1223] Move domain stuff into a new domain package.
43 lines
1.3 KiB
Go
43 lines
1.3 KiB
Go
package rejects
|
|
|
|
import (
|
|
"github.com/kaspanet/kaspad/network/domainmessage"
|
|
"github.com/kaspanet/kaspad/network/netadapter/router"
|
|
"github.com/kaspanet/kaspad/network/protocol/protocolerrors"
|
|
)
|
|
|
|
// HandleRejectsContext is the interface for the context needed for the HandleRejects flow.
|
|
type HandleRejectsContext interface {
|
|
}
|
|
|
|
type handleRejectsFlow struct {
|
|
HandleRejectsContext
|
|
incomingRoute, outgoingRoute *router.Route
|
|
}
|
|
|
|
// HandleRejects handles all reject messages coming through incomingRoute.
|
|
// This function assumes that incomingRoute will only return MsgReject.
|
|
func HandleRejects(context HandleRejectsContext, incomingRoute *router.Route, outgoingRoute *router.Route) error {
|
|
flow := &handleRejectsFlow{
|
|
HandleRejectsContext: context,
|
|
incomingRoute: incomingRoute,
|
|
outgoingRoute: outgoingRoute,
|
|
}
|
|
return flow.start()
|
|
}
|
|
|
|
func (flow *handleRejectsFlow) start() error {
|
|
message, err := flow.incomingRoute.Dequeue()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
rejectMessage := message.(*domainmessage.MsgReject)
|
|
|
|
const maxReasonLength = 255
|
|
if len(rejectMessage.Reason) > maxReasonLength {
|
|
return protocolerrors.Errorf(false, "got reject message longer than %d", maxReasonLength)
|
|
}
|
|
|
|
return protocolerrors.Errorf(false, "got reject message: `%s`", rejectMessage.Reason)
|
|
}
|