From 0c7b59ed47eaa2f786eedd584d9e4192964931f3 Mon Sep 17 00:00:00 2001 From: mhsanaei Date: Thu, 28 Aug 2025 10:15:04 +0200 Subject: removed: Allocate --- xray/inbound.go | 4 ---- 1 file changed, 4 deletions(-) (limited to 'xray') diff --git a/xray/inbound.go b/xray/inbound.go index c74b07ba..ea11449d 100644 --- a/xray/inbound.go +++ b/xray/inbound.go @@ -14,7 +14,6 @@ type InboundConfig struct { StreamSettings json_util.RawMessage `json:"streamSettings"` Tag string `json:"tag"` Sniffing json_util.RawMessage `json:"sniffing"` - Allocate json_util.RawMessage `json:"allocate"` } func (c *InboundConfig) Equals(other *InboundConfig) bool { @@ -39,8 +38,5 @@ func (c *InboundConfig) Equals(other *InboundConfig) bool { if !bytes.Equal(c.Sniffing, other.Sniffing) { return false } - if !bytes.Equal(c.Allocate, other.Allocate) { - return false - } return true } -- cgit v1.2.3