This repository has been archived on 2024-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
2023-10-23 16:50:43 +08:00

8 lines
107 B
Go

package outbound
import "net"
func (c *conn) RawConn() (net.Conn, bool) {
return c.ExtendedConn, true
}