5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-11-10 04:00:37 +00:00

remove testing panics

This commit is contained in:
Arceliar 2018-06-07 22:32:01 -05:00
parent ea1d21f7e5
commit 495891d9e8

View File

@ -281,7 +281,6 @@ func (p *peer) handleSwitchMsg(packet []byte) {
}
//p.core.log.Println("Decoded msg:", msg, "; bytes:", packet)
if len(msg.Hops) < 1 {
panic("FIXME testing")
p.core.peers.removePeer(p.port)
}
var loc switchLocator
@ -293,7 +292,6 @@ func (p *peer) handleSwitchMsg(packet []byte) {
loc.coords = append(loc.coords, hop.Port)
bs := getBytesForSig(&hop.Next, &sigMsg)
if !p.core.sigs.check(&prevKey, &hop.Sig, bs) {
panic("FIXME testing")
p.core.peers.removePeer(p.port)
}
prevKey = hop.Next