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
diff options
context:
space:
mode:
authorMHSanaei <ho3ein.sanaei@gmail.com>2026-02-02 19:50:30 +0300
committerMHSanaei <ho3ein.sanaei@gmail.com>2026-02-02 19:50:30 +0300
commite8d2973be77317b345e540b32fe04fca97dbf101 (patch)
treedc531db33815f1d9929f114b48f49db21e47b145 /web/html/form/stream
parentf3d47ebb3fbc65fc25a39d4ef0d4561407acc941 (diff)
Finalmask: Add XICMP
Diffstat (limited to 'web/html/form/stream')
-rw-r--r--web/html/form/stream/stream_finalmask.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/web/html/form/stream/stream_finalmask.html b/web/html/form/stream/stream_finalmask.html
index 4ed7d6a1..35962dfa 100644
--- a/web/html/form/stream/stream_finalmask.html
+++ b/web/html/form/stream/stream_finalmask.html
@@ -45,6 +45,9 @@
<a-select-option v-if="inbound.stream.network === 'kcp'"
value="mkcp-original">
mKCP Original</a-select-option>
+ <a-select-option v-if="inbound.stream.network === 'kcp'"
+ value="xicmp">
+ xICMP (Experimental)</a-select-option>
<!-- xDNS for TCP/WS/HTTPUpgrade/XHTTP -->
<a-select-option
v-if="['tcp', 'ws', 'httpupgrade', 'xhttp'].includes(inbound.stream.network)"
@@ -64,6 +67,17 @@
<a-input v-model.trim="mask.settings.domain"
placeholder="e.g., www.example.com"></a-input>
</a-form-item>
+ <!-- Settings for xICMP -->
+ <a-form-item label='IP'
+ v-if="mask.type === 'xicmp'">
+ <a-input v-model.trim="mask.settings.ip"
+ placeholder="e.g., 1.1.1.1"></a-input>
+ </a-form-item>
+ <a-form-item label='ID'
+ v-if="mask.type === 'xicmp'">
+ <a-input-number v-model.number="mask.settings.id"
+ :min="0" :max="65535"></a-input-number>
+ </a-form-item>
</a-form>
</template>
</a-form>