mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-29 06:35:07 +03:00
Don't indefinitely block TUN/TAP reader goroutine when a conn error happens
This commit is contained in:
parent
396c879d0f
commit
9e086e70f0
2 changed files with 8 additions and 3 deletions
|
@ -207,7 +207,7 @@ func (c *Conn) Read(b []byte) (int, error) {
|
|||
defer close(done)
|
||||
// If the nonce is bad then drop the packet and return an error
|
||||
if !sinfo.nonceIsOK(&p.Nonce) {
|
||||
err = errors.New("packet dropped due to invalid nonce")
|
||||
err = ConnError{errors.New("packet dropped due to invalid nonce"), false, true, 0}
|
||||
return
|
||||
}
|
||||
// Decrypt the packet
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue