1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 23:36:25 -04:00
v2fly/testing/scenarios/tls_test.go
2016-12-16 21:39:00 +01:00

16 lines
278 B
Go

package scenarios
import (
"v2ray.com/core"
v2net "v2ray.com/core/common/net"
)
var clientConfig = &core.Config{
Inbound: []*core.InboundConnectionConfig{
{
PortRange: v2net.SinglePortRange(pickPort()),
ListenOn: v2net.NewIPOrDomain(v2net.LocalHostIP),
},
},
}