mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-10 02:50:27 +00:00
it helps to check that messages decoded correctly
This commit is contained in:
parent
bcfeb22915
commit
ec1c173ca5
@ -287,7 +287,9 @@ func (p *peer) sendSwitchMsg() {
|
||||
|
||||
func (p *peer) handleSwitchMsg(packet []byte) {
|
||||
var msg switchMsg
|
||||
msg.decode(packet)
|
||||
if !msg.decode(packet) {
|
||||
return
|
||||
}
|
||||
//p.core.log.Println("Decoded msg:", msg, "; bytes:", packet)
|
||||
if len(msg.Hops) < 1 {
|
||||
panic("FIXME testing")
|
||||
|
Loading…
Reference in New Issue
Block a user