1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-08 06:14:23 -04:00
v2fly/transport/transport.go

10 lines
114 B
Go
Raw Normal View History

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