mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-30 07:35:07 +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:
@@ -24,6 +24,9 @@ type Stfu struct {
|
||||
// A compile time check to ensure Stfu implements the lnwire.Message interface.
|
||||
var _ Message = (*Stfu)(nil)
|
||||
|
||||
// A compile time check to ensure Stfu implements the lnwire.SizeableMessage interface.
|
||||
var _ SizeableMessage = (*Stfu)(nil)
|
||||
|
||||
// Encode serializes the target Stfu into the passed io.Writer.
|
||||
// Serialization will observe the rules defined by the passed protocol version.
|
||||
//
|
||||
@@ -68,6 +71,13 @@ func (s *Stfu) MsgType() MessageType {
|
||||
return MsgStfu
|
||||
}
|
||||
|
||||
// SerializedSize returns the serialized size of the message in bytes.
|
||||
//
|
||||
// This is part of the lnwire.SizeableMessage interface.
|
||||
func (s *Stfu) SerializedSize() (uint32, error) {
|
||||
return MessageSerializedSize(s)
|
||||
}
|
||||
|
||||
// A compile time check to ensure Stfu implements the
|
||||
// lnwire.LinkUpdater interface.
|
||||
var _ LinkUpdater = (*Stfu)(nil)
|
||||
|
Reference in New Issue
Block a user