Add SplitHTTP Transport (#3412)

This commit is contained in:
mmmray
2024-06-18 07:36:36 +02:00
committed by GitHub
parent 501d5dec60
commit c10bd28731
16 changed files with 1288 additions and 19 deletions
@@ -0,0 +1,9 @@
package splithttp
import "github.com/xtls/xray-core/common/errors"
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}