config.go 207 B

1234567891011
  1. package transport
  2. import (
  3. "v2ray.com/core/transport/internet"
  4. )
  5. // Apply applies this Config.
  6. func (this *Config) Apply() error {
  7. internet.ApplyGlobalNetworkSettings(this.NetworkSettings)
  8. return nil
  9. }