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)
|
||
|
}
|