diff options
-rw-r--r-- | receive.go | 6 | ||||
-rw-r--r-- | send.go | 3 |
2 files changed, 6 insertions, 3 deletions
@@ -245,9 +245,10 @@ func (device *Device) RoutineDecryption() { elem.Drop() } default: - break + goto out } } + out: logDebug.Println("Routine: decryption worker - stopped") }() logDebug.Println("Routine: decryption worker - started") @@ -317,9 +318,10 @@ func (device *Device) RoutineHandshake() { select { case <-device.queue.handshake: default: - return + goto out } } + out: logDebug.Println("Routine: handshake worker - stopped") }() @@ -281,9 +281,10 @@ func (device *Device) RoutineEncryption() { elem.Drop() } default: - break + goto out } } + out: logDebug.Println("Routine: encryption worker - stopped") }() |