chore: reduce wrapper

This commit is contained in:
gVisor bot 2022-07-05 21:00:41 +08:00
parent 1fc9e0be99
commit 76bda049b5

View file

@ -16,10 +16,15 @@ type ConnContext struct {
func NewConnContext(conn net.Conn, metadata *C.Metadata) *ConnContext {
id, _ := uuid.NewV4()
if _, ok := conn.(*CN.BufferedConn); !ok {
conn = CN.NewBufferedConn(conn)
}
return &ConnContext{
id: id,
metadata: metadata,
conn: CN.NewBufferedConn(conn),
conn: conn,
}
}