Add OCSP Stapling for TLS & XTLS (#92)

This commit is contained in:
eMeab 2020-12-25 16:01:20 +08:00 committed by GitHub
parent 6f25191822
commit 3d7e86efba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 312 additions and 106 deletions

View file

@ -0,0 +1,9 @@
package ocsp
import "github.com/xtls/xray-core/common/errors"
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}