1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-06-12 14:09:11 -04:00
Files
v2fly/transport/config.go

12 lines
207 B
Go
Raw Normal View History

2016-06-02 01:49:25 +02:00
package transport
2016-06-14 22:54:08 +02:00
import (
2016-10-02 23:43:58 +02:00
"v2ray.com/core/transport/internet"
2016-06-14 22:54:08 +02:00
)
2016-06-11 19:51:02 +08:00
2016-06-11 13:29:33 +02:00
// Apply applies this Config.
2016-06-02 20:52:52 +02:00
func (this *Config) Apply() error {
2016-10-02 23:43:58 +02:00
internet.ApplyGlobalNetworkSettings(this.NetworkSettings)
2016-06-02 20:52:52 +02:00
return nil
2016-06-02 01:49:25 +02:00
}