1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-05 19:44:32 -04:00
v2fly/transport/config.go
2016-10-02 23:43:58 +02:00

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
}