mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2025-12-19 16:30:07 +08:00
8 lines
105 B
Go
8 lines
105 B
Go
package context
|
|
|
|
import "net"
|
|
|
|
func (c *ConnContext) RawConn() (net.Conn, bool) {
|
|
return c.conn, true
|
|
}
|