Files
v2fly/common/net/network.go
T
2015-10-30 15:56:46 +01:00

13 lines
160 B
Go

package net
const (
TCPNetwork = Network("tcp")
UDPNetwork = Network("udp")
)
type Network string
type NetworkList interface {
HasNetwork(Network) bool
}