fix: tfoConn panic

This commit is contained in:
wwqgtxx 2023-05-16 14:55:50 +08:00
parent 8b631f11b8
commit e552b5475f

View File

@ -18,10 +18,11 @@ type tfoConn struct {
}
func (c *tfoConn) Dial(earlyData []byte) (err error) {
c.Conn, err = c.dialFn(c.ctx, earlyData)
conn, err := c.dialFn(c.ctx, earlyData)
if err != nil {
return
}
c.Conn = conn
c.dialed <- true
return err
}