From b569c21fece25a587b9257ffca77a525d2194b76 Mon Sep 17 00:00:00 2001 From: mhsanaei Date: Thu, 21 Nov 2024 17:56:25 +0330 Subject: [PATCH] XHTTP: noGRPCHeader --- web/assets/js/model/inbound.js | 4 ++++ web/html/xui/form/stream/stream_splithttp.html | 3 +++ 2 files changed, 7 insertions(+) diff --git a/web/assets/js/model/inbound.js b/web/assets/js/model/inbound.js index 0e403fce..8df6577e 100644 --- a/web/assets/js/model/inbound.js +++ b/web/assets/js/model/inbound.js @@ -537,6 +537,7 @@ class SplitHTTPStreamSettings extends XrayCommonClass { cMaxLifetimeMs: 0 }, mode = MODE_OPTION.AUTO, + noGRPCHeader = false, ) { super(); this.path = path; @@ -549,6 +550,7 @@ class SplitHTTPStreamSettings extends XrayCommonClass { this.xPaddingBytes = xPaddingBytes; this.xmux = xmux; this.mode = mode; + this.noGRPCHeader = noGRPCHeader; } addHeader(name, value) { @@ -571,6 +573,7 @@ class SplitHTTPStreamSettings extends XrayCommonClass { json.xPaddingBytes, json.xmux, json.mode, + json.noGRPCHeader ); } @@ -591,6 +594,7 @@ class SplitHTTPStreamSettings extends XrayCommonClass { cMaxLifetimeMs: this.xmux.cMaxLifetimeMs }, mode: this.mode, + noGRPCHeader: this.noGRPCHeader }; } } diff --git a/web/html/xui/form/stream/stream_splithttp.html b/web/html/xui/form/stream/stream_splithttp.html index 12cd3cac..2d5177bd 100644 --- a/web/html/xui/form/stream/stream_splithttp.html +++ b/web/html/xui/form/stream/stream_splithttp.html @@ -55,5 +55,8 @@ + + + {{end}} \ No newline at end of file