327768f4ad
Use [33]byte for graph vertex representation. Delete unneeded stuff: 1. DeepEqual for graph comparison 2. EdgePath 3. 2-thread BFS 4. Table transfer messages and neighborhood radius 5. Beacons Refactor: 1. Change ID to Vertex 2. Test use table driven approach 3. Add comments 4. Make graph internal representation private 5. Use wire.OutPoint as EdgeId 6. Decouple routing messages from routing implementation 7. Delete Async methods 8. Delete unneeded channels and priority buffer from manager 9. Delete unneeded interfaces in internal graph realisation 10. Renamed ID to Vertex
45 lines
983 B
Go
45 lines
983 B
Go
// 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 (
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
type NeighborUpdMessage struct {
|
|
Updates []ChannelOperation
|
|
}
|
|
|
|
func (msg *NeighborUpdMessage) Decode(r io.Reader, pver uint32) error {
|
|
err := readElements(r, &msg.Updates)
|
|
return err
|
|
}
|
|
|
|
func (msg *NeighborUpdMessage) Encode(w io.Writer, pver uint32) error {
|
|
err := writeElements(w, msg.Updates)
|
|
return err
|
|
}
|
|
|
|
func (msg *NeighborUpdMessage) Command() uint32 {
|
|
return CmdNeighborUpdMessage
|
|
}
|
|
|
|
func (msg *NeighborUpdMessage) MaxPayloadLength(uint32) uint32 {
|
|
// TODO: Insert some estimations
|
|
return 1000000
|
|
}
|
|
|
|
func (msg *NeighborUpdMessage) Validate() error {
|
|
// TODO: Add validation
|
|
return nil
|
|
}
|
|
|
|
func (msg *NeighborUpdMessage) String() string {
|
|
return fmt.Sprintf("NeighborUpdMessage{%v}", msg.Updates)
|
|
}
|
|
|
|
var _ Message = (*NeighborUpdMessage)(nil)
|