mihomo/constant/patch.go
2023-10-23 16:50:43 +08:00

11 lines
169 B
Go

package constant
import "net"
type WrappedConn interface {
RawConn() (net.Conn, bool)
}
type WrappedPacketConn interface {
RawPacketConn() (net.PacketConn, bool)
}