v2ray-core/transport/transport.go

10 lines
114 B
Go
Raw Normal View History

2016-06-01 23:49:25 +00:00
package transport
var (
2016-06-02 18:52:52 +00:00
connectionReuse = false
2016-06-01 23:49:25 +00:00
)
2016-06-02 18:52:52 +00:00
func IsConnectionReusable() bool {
return connectionReuse
2016-06-01 23:49:25 +00:00
}