mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
17 lines
281 B
Go
17 lines
281 B
Go
package transport
|
|
|
|
import (
|
|
"v2ray.com/core/transport/internet"
|
|
)
|
|
|
|
// Apply applies this Config.
|
|
func (this *Config) Apply() error {
|
|
if this == nil {
|
|
return nil
|
|
}
|
|
if err := internet.ApplyGlobalNetworkSettings(this.NetworkSettings); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|