mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 01:57:12 -05:00
10 lines
114 B
Go
10 lines
114 B
Go
package transport
|
|
|
|
var (
|
|
connectionReuse = false
|
|
)
|
|
|
|
func IsConnectionReusable() bool {
|
|
return connectionReuse
|
|
}
|