mihomo/constant/patch.go

12 lines
169 B
Go
Raw Normal View History

2023-10-23 16:50:43 +08:00
package constant
import "net"
type WrappedConn interface {
RawConn() (net.Conn, bool)
}
type WrappedPacketConn interface {
RawPacketConn() (net.PacketConn, bool)
}