소스 검색

warning message for global trasnport config

Darien Raymond 7 년 전
부모
커밋
86f8fe4eb4
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      transport/internet/config.go

+ 5 - 1
transport/internet/config.go

@@ -1,6 +1,9 @@
 package internet
 
-import "v2ray.com/core/common/serial"
+import (
+	"v2ray.com/core/common/serial"
+	"v2ray.com/core/features"
+)
 
 type ConfigCreator func() interface{}
 
@@ -107,6 +110,7 @@ func (c *StreamConfig) HasSecuritySettings() bool {
 }
 
 func ApplyGlobalTransportSettings(settings []*TransportConfig) error {
+	features.PrintDeprecatedFeatureWarning("global transport settings")
 	globalTransportSettings = settings
 	return nil
 }