1
0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-03-03 05:23:16 +03:00
2021-03-06 16:29:17 +00:00

14 lines
239 B
Go

package global
import (
"github.com/xtls/xray-core/transport/internet"
)
// Apply applies this Config.
func (c *Config) Apply() error {
if c == nil {
return nil
}
return internet.ApplyGlobalTransportSettings(c.TransportSettings)
}