mirror of https://github.com/v2ray/v2ray-core
13 lines
160 B
Go
13 lines
160 B
Go
|
package net
|
||
|
|
||
|
const (
|
||
|
TCPNetwork = Network("tcp")
|
||
|
UDPNetwork = Network("udp")
|
||
|
)
|
||
|
|
||
|
type Network string
|
||
|
|
||
|
type NetworkList interface {
|
||
|
HasNetwork(Network) bool
|
||
|
}
|