mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 10:08:15 -05:00
12 lines
207 B
Go
12 lines
207 B
Go
package transport
|
|
|
|
import (
|
|
"v2ray.com/core/transport/internet"
|
|
)
|
|
|
|
// Apply applies this Config.
|
|
func (this *Config) Apply() error {
|
|
internet.ApplyGlobalNetworkSettings(this.NetworkSettings)
|
|
return nil
|
|
}
|