2018-10-24 04:28:19 +03:00
|
|
|
package wtwire
|
|
|
|
|
2019-02-07 07:06:44 +03:00
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
|
|
|
|
"github.com/btcsuite/btcd/chaincfg/chainhash"
|
|
|
|
"github.com/lightningnetwork/lnd/lnwire"
|
|
|
|
)
|
2018-10-24 04:28:19 +03:00
|
|
|
|
|
|
|
// Init is the first message sent over the watchtower wire protocol, and
|
2019-02-07 07:06:44 +03:00
|
|
|
// specifies connection features bits and level of requiredness maintained by
|
|
|
|
// the sending node. The Init message also sends the chain hash identifying the
|
|
|
|
// network that the sender is on.
|
2018-10-24 04:28:19 +03:00
|
|
|
type Init struct {
|
2019-02-07 07:06:44 +03:00
|
|
|
// ConnFeatures are the feature bits being advertised for the duration
|
|
|
|
// of a single connection with a peer.
|
|
|
|
ConnFeatures *lnwire.RawFeatureVector
|
|
|
|
|
|
|
|
// ChainHash is the genesis hash of the chain that the advertiser claims
|
|
|
|
// to be on.
|
|
|
|
ChainHash chainhash.Hash
|
2018-10-24 04:28:19 +03:00
|
|
|
}
|
|
|
|
|
2019-02-07 07:06:44 +03:00
|
|
|
// NewInitMessage generates a new Init message from a raw connection feature
|
|
|
|
// vector and chain hash.
|
|
|
|
func NewInitMessage(connFeatures *lnwire.RawFeatureVector,
|
|
|
|
chainHash chainhash.Hash) *Init {
|
|
|
|
|
2018-10-24 04:28:19 +03:00
|
|
|
return &Init{
|
2019-02-07 07:06:44 +03:00
|
|
|
ConnFeatures: connFeatures,
|
|
|
|
ChainHash: chainHash,
|
2018-10-24 04:28:19 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-07 07:06:44 +03:00
|
|
|
// Encode serializes the target Init into the passed io.Writer observing the
|
|
|
|
// protocol version specified.
|
|
|
|
//
|
|
|
|
// This is part of the wtwire.Message interface.
|
|
|
|
func (msg *Init) Encode(w io.Writer, pver uint32) error {
|
|
|
|
return WriteElements(w,
|
|
|
|
msg.ConnFeatures,
|
|
|
|
msg.ChainHash,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Decode deserializes a serialized Init message stored in the passed io.Reader
|
|
|
|
// observing the specified protocol version.
|
|
|
|
//
|
|
|
|
// This is part of the wtwire.Message interface.
|
|
|
|
func (msg *Init) Decode(r io.Reader, pver uint32) error {
|
|
|
|
return ReadElements(r,
|
|
|
|
&msg.ConnFeatures,
|
|
|
|
&msg.ChainHash,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2018-10-24 04:28:19 +03:00
|
|
|
// MsgType returns the integer uniquely identifying this message type on the
|
|
|
|
// wire.
|
|
|
|
//
|
|
|
|
// This is part of the wtwire.Message interface.
|
|
|
|
func (msg *Init) MsgType() MessageType {
|
|
|
|
return MsgInit
|
|
|
|
}
|
|
|
|
|
2019-02-07 07:06:44 +03:00
|
|
|
// MaxPayloadLength returns the maximum allowed payload size for an Init
|
|
|
|
// complete message observing the specified protocol version.
|
|
|
|
//
|
|
|
|
// This is part of the wtwire.Message interface.
|
|
|
|
func (msg *Init) MaxPayloadLength(uint32) uint32 {
|
|
|
|
return MaxMessagePayload
|
|
|
|
}
|
|
|
|
|
2018-10-24 04:28:19 +03:00
|
|
|
// A compile-time constraint to ensure Init implements the Message interface.
|
|
|
|
var _ Message = (*Init)(nil)
|