1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-20 14:35:23 +00:00
v2fly/transport/config.go

14 lines
247 B
Go
Raw Normal View History

2016-06-01 23:49:25 +00:00
package transport
2016-06-14 20:54:08 +00:00
import (
2021-02-16 20:31:50 +00:00
"github.com/v2fly/v2ray-core/v4/transport/internet"
2016-06-14 20:54:08 +00:00
)
2016-06-11 11:51:02 +00:00
2016-06-11 11:29:33 +00:00
// Apply applies this Config.
func (c *Config) Apply() error {
if c == nil {
2016-10-14 19:19:26 +00:00
return nil
}
2018-04-03 22:29:30 +00:00
return internet.ApplyGlobalTransportSettings(c.TransportSettings)
2016-06-01 23:49:25 +00:00
}