mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-07-07 00:51:15 +00:00
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
|
||
|
}
|