summaryrefslogtreecommitdiffstats
path: root/device/receive.go
diff options
context:
space:
mode:
authorJosh Bleecher Snyder <josh@tailscale.com>2021-01-19 11:10:05 -0800
committerJosh Bleecher Snyder <josh@tailscale.com>2021-02-08 08:18:32 -0800
commit84a42aed63c1bb2c6de0774dc568ab1c77a22b33 (patch)
tree66bbd65e31d33546efd341192abb94f8dd2494d0 /device/receive.go
parentmain: add back version file (diff)
downloadwireguard-go-84a42aed63c1bb2c6de0774dc568ab1c77a22b33.tar.xz
wireguard-go-84a42aed63c1bb2c6de0774dc568ab1c77a22b33.zip
device: remove device.state.stopping from RoutineDecryption
It is no longer necessary, as of 454de6f3e64abd2a7bf9201579cd92eea5280996 (device: use channel close to shut down and drain decryption channel). Signed-off-by: Josh Bleecher Snyder <josh@tailscale.com>
Diffstat (limited to 'device/receive.go')
-rw-r--r--device/receive.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/device/receive.go b/device/receive.go
index 0b70137..3b0f36c 100644
--- a/device/receive.go
+++ b/device/receive.go
@@ -210,10 +210,8 @@ func (device *Device) RoutineReceiveIncoming(IP int, bind conn.Bind) {
func (device *Device) RoutineDecryption() {
var nonce [chacha20poly1305.NonceSize]byte
- defer func() {
- device.log.Verbosef("Routine: decryption worker - stopped")
- device.state.stopping.Done()
- }()
+
+ defer device.log.Verbosef("Routine: decryption worker - stopped")
device.log.Verbosef("Routine: decryption worker - started")
for elem := range device.queue.decryption.c {