Delete .github/diy/packages/xray-core/patches/AllowInsecure.patch

This commit is contained in:
kiddin9 2026-07-16 04:13:38 +08:00 committed by GitHub
parent 31ddbb1ab7
commit caab33ace1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,24 +0,0 @@
--- a/infra/conf/transport_internet.go
+++ b/infra/conf/transport_internet.go
@@ -14,7 +14,6 @@ import (
"strconv"
"strings"
"syscall"
- "time"
"github.com/xtls/xray-core/common"
"github.com/xtls/xray-core/common/errors"
@@ -699,12 +698,7 @@ func (c *TLSConfig) Build() (proto.Message, error) {
config.MasterKeyLog = c.MasterKeyLog
if c.AllowInsecure {
- if time.Now().After(time.Date(2026, 6, 1, 0, 0, 0, 0, time.UTC)) {
- return nil, errors.PrintRemovedFeatureError(`"allowInsecure"`, `"pinnedPeerCertSha256"`)
- } else {
- errors.LogWarning(context.Background(), `"allowInsecure" will be removed automatically after 2026-06-01, please use "pinnedPeerCertSha256"(pcs) and "verifyPeerCertByName"(vcn) instead, PLEASE CONTACT YOUR SERVICE PROVIDER (AIRPORT)`)
- config.AllowInsecure = true
- }
+ config.AllowInsecure = true
}
if c.PinnedPeerCertSha256 != "" {
for v := range strings.SplitSeq(c.PinnedPeerCertSha256, ",") {