mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 03:47:39 +03:00
Fix wrapStackError
This commit is contained in:
parent
8b6630a3b0
commit
d5efb43122
1 changed files with 2 additions and 1 deletions
|
@ -5,6 +5,7 @@ package tun
|
|||
import (
|
||||
"net"
|
||||
|
||||
E "github.com/sagernet/sing/common/exceptions"
|
||||
"gvisor.dev/gvisor/pkg/tcpip"
|
||||
"gvisor.dev/gvisor/pkg/tcpip/adapters/gonet"
|
||||
)
|
||||
|
@ -55,7 +56,7 @@ func wrapStackError(err tcpip.Error) error {
|
|||
*tcpip.ErrAborted:
|
||||
return net.ErrClosed
|
||||
}
|
||||
return wrapStackError(err)
|
||||
return E.New(err.String())
|
||||
}
|
||||
|
||||
func wrapError(err error) error {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue