2016-07-15 14:02:59 +03:00
|
|
|
// Copyright (c) 2016 Bitfury Group Limited
|
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file LICENSE or http://www.opensource.org/licenses/mit-license.php
|
|
|
|
|
|
|
|
package lnwire
|
|
|
|
|
|
|
|
import (
|
2016-08-11 21:54:44 +03:00
|
|
|
"fmt"
|
2016-07-15 14:02:59 +03:00
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
|
|
|
type NeighborUpdMessage struct {
|
2016-10-05 23:47:02 +03:00
|
|
|
Updates []ChannelOperation
|
2016-07-15 14:02:59 +03:00
|
|
|
}
|
|
|
|
|
2016-08-11 21:54:44 +03:00
|
|
|
func (msg *NeighborUpdMessage) Decode(r io.Reader, pver uint32) error {
|
2016-10-05 23:47:02 +03:00
|
|
|
err := readElements(r, &msg.Updates)
|
2016-07-15 14:02:59 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-08-11 21:54:44 +03:00
|
|
|
func (msg *NeighborUpdMessage) Encode(w io.Writer, pver uint32) error {
|
2016-10-05 23:47:02 +03:00
|
|
|
err := writeElements(w, msg.Updates)
|
2016-07-15 14:02:59 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-08-11 21:54:44 +03:00
|
|
|
func (msg *NeighborUpdMessage) Command() uint32 {
|
2016-07-15 14:02:59 +03:00
|
|
|
return CmdNeighborUpdMessage
|
|
|
|
}
|
|
|
|
|
2016-08-11 21:54:44 +03:00
|
|
|
func (msg *NeighborUpdMessage) MaxPayloadLength(uint32) uint32 {
|
2016-07-15 14:02:59 +03:00
|
|
|
// TODO: Insert some estimations
|
|
|
|
return 1000000
|
|
|
|
}
|
|
|
|
|
2016-08-11 21:54:44 +03:00
|
|
|
func (msg *NeighborUpdMessage) Validate() error {
|
2016-07-15 14:02:59 +03:00
|
|
|
// TODO: Add validation
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *NeighborUpdMessage) String() string {
|
2016-10-05 23:47:02 +03:00
|
|
|
return fmt.Sprintf("NeighborUpdMessage{%v}", msg.Updates)
|
2016-07-15 14:02:59 +03:00
|
|
|
}
|
|
|
|
|
2016-08-11 21:54:44 +03:00
|
|
|
var _ Message = (*NeighborUpdMessage)(nil)
|