mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2025-12-19 16:30:07 +08:00
12 lines
169 B
Go
12 lines
169 B
Go
package constant
|
|
|
|
import "net"
|
|
|
|
type WrappedConn interface {
|
|
RawConn() (net.Conn, bool)
|
|
}
|
|
|
|
type WrappedPacketConn interface {
|
|
RawPacketConn() (net.PacketConn, bool)
|
|
}
|