fix: gvisor panic

This commit is contained in:
gVisor bot 2022-04-25 18:21:50 +08:00
parent 1787c4285a
commit 7421c5f70a

View File

@ -67,6 +67,10 @@ func withTCPHandler(handle adapter.TCPHandleFunc) option.Option {
defer r.Complete(false)
err = setSocketOptions(s, ep)
if err != nil {
r.Complete(true)
return
}
conn := &tcpConn{
TCPConn: gonet.NewTCPConn(&wq, ep),