config.go 231 B

12345678910111213
  1. package transport
  2. import (
  3. "v2ray.com/core/transport/internet"
  4. )
  5. // Apply applies this Config.
  6. func (c *Config) Apply() error {
  7. if c == nil {
  8. return nil
  9. }
  10. return internet.ApplyGlobalTransportSettings(c.TransportSettings)
  11. }