Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/xray
diff options
context:
space:
mode:
authormhsanaei <ho3ein.sanaei@gmail.com>2025-08-28 11:15:04 +0300
committermhsanaei <ho3ein.sanaei@gmail.com>2025-08-28 11:15:04 +0300
commit0c7b59ed47eaa2f786eedd584d9e4192964931f3 (patch)
tree6729ad8502c390717cc0f86cf13dfc9ca3e6208b /xray
parent3087c1b123f426b7c1306ab634fb84e7943e4217 (diff)
removed: Allocate
Diffstat (limited to 'xray')
-rw-r--r--xray/inbound.go4
1 files changed, 0 insertions, 4 deletions
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
}