Add shadow-tls support

This commit is contained in:
世界
2023-02-21 19:19:47 +08:00
parent 4d5c3195d2
commit d6c2a9aab7
25 changed files with 1311 additions and 130 deletions
+9
View File
@@ -0,0 +1,9 @@
package shadowtls
import "github.com/xtls/xray-core/common/errors"
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}