mirror of
https://github.com/KusakabeShi/EtherGuard-VPN.git
synced 2025-08-15 19:23:57 +02:00
device: put handshake buffer in pool in FlushPacketQueues
This appears to have been an oversight. Signed-off-by: Josh Bleecher Snyder <josh@tailscale.com>
This commit is contained in:
committed by
Jason A. Donenfeld
parent
48c3b87eb8
commit
0cc15e7c7c
@ -387,7 +387,8 @@ func (device *Device) RemoveAllPeers() {
|
||||
func (device *Device) FlushPacketQueues() {
|
||||
for {
|
||||
select {
|
||||
case <-device.queue.handshake:
|
||||
case elem := <-device.queue.handshake:
|
||||
device.PutMessageBuffer(elem.buffer)
|
||||
default:
|
||||
return
|
||||
}
|
||||
|
Reference in New Issue
Block a user