transport.go 195 B

12345678910
  1. package transport
  2. var (
  3. connectionReuse = true
  4. )
  5. // IsConnectionReusable returns true if V2Ray is trying to reuse TCP connections.
  6. func IsConnectionReusable() bool {
  7. return connectionReuse
  8. }