mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-28 14:40:51 +02:00
lnwire: add new SerializedSize method to all wire messages
This'll be useful for the bandwidth based rate limiting we'll implement in the next commit.
This commit is contained in:
@@ -30,6 +30,10 @@ type DynReject struct {
|
||||
// interface.
|
||||
var _ Message = (*DynReject)(nil)
|
||||
|
||||
// A compile time check to ensure DynReject implements the
|
||||
// lnwire.SizeableMessage interface.
|
||||
var _ SizeableMessage = (*DynReject)(nil)
|
||||
|
||||
// Encode serializes the target DynReject into the passed io.Writer.
|
||||
// Serialization will observe the rules defined by the passed protocol version.
|
||||
//
|
||||
@@ -74,3 +78,10 @@ func (dr *DynReject) Decode(r io.Reader, _ uint32) error {
|
||||
func (dr *DynReject) MsgType() MessageType {
|
||||
return MsgDynReject
|
||||
}
|
||||
|
||||
// SerializedSize returns the serialized size of the message in bytes.
|
||||
//
|
||||
// This is part of the lnwire.SizeableMessage interface.
|
||||
func (dr *DynReject) SerializedSize() (uint32, error) {
|
||||
return MessageSerializedSize(dr)
|
||||
}
|
||||
|
Reference in New Issue
Block a user