5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-11-22 22:20:27 +00:00

remove unused field from peer

This commit is contained in:
Arceliar 2018-02-19 19:47:11 -06:00
parent 4045597516
commit a21a039b57

View File

@ -73,7 +73,6 @@ type peer struct {
// Specifically, processing switch messages, signing, and verifying sigs // Specifically, processing switch messages, signing, and verifying sigs
// Resets at the start of each tick // Resets at the start of each tick
throttle uint8 throttle uint8
lastSend time.Time // To throttle sends, use only from linkLoop goroutine
} }
const peer_Throttle = 1 const peer_Throttle = 1
@ -158,7 +157,6 @@ func (p *peer) linkLoop(in <-chan []byte) {
if p.msgAnc != nil { if p.msgAnc != nil {
lastRSeq = p.msgAnc.seq lastRSeq = p.msgAnc.seq
} }
p.lastSend = time.Now()
p.sendSwitchAnnounce() p.sendSwitchAnnounce()
} }
counter = (counter + 1) % 4 counter = (counter + 1) % 4