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/web/html
diff options
context:
space:
mode:
Diffstat (limited to 'web/html')
-rw-r--r--web/html/xui/form/outbound.html5
-rw-r--r--web/html/xui/form/stream/stream_splithttp.html6
-rw-r--r--web/html/xui/inbound_info_modal.html8
3 files changed, 19 insertions, 0 deletions
diff --git a/web/html/xui/form/outbound.html b/web/html/xui/form/outbound.html
index 2f5d8207..fde2f27c 100644
--- a/web/html/xui/form/outbound.html
+++ b/web/html/xui/form/outbound.html
@@ -380,6 +380,11 @@
<a-form-item label='{{ i18n "path" }}'>
<a-input v-model.trim="outbound.stream.splithttp.path"></a-input>
</a-form-item>
+ <a-form-item label='Mode'>
+ <a-select v-model="outbound.stream.splithttp.mode" :dropdown-class-name="themeSwitcher.currentTheme">
+ <a-select-option v-for="key in MODE_OPTION" :value="key">[[ key ]]</a-select-option>
+ </a-select>
+ </a-form-item>
</template>
</template>
diff --git a/web/html/xui/form/stream/stream_splithttp.html b/web/html/xui/form/stream/stream_splithttp.html
index 957720e9..12cd3cac 100644
--- a/web/html/xui/form/stream/stream_splithttp.html
+++ b/web/html/xui/form/stream/stream_splithttp.html
@@ -22,6 +22,12 @@
</a-input>
</a-input-group>
</a-form-item>
+ <a-form-item label='Mode'>
+ <a-select v-model="inbound.stream.splithttp.mode" style="width: 50%"
+ :dropdown-class-name="themeSwitcher.currentTheme">
+ <a-select-option v-for="key in MODE_OPTION" :value="key">[[ key ]]</a-select-option>
+ </a-select>
+ </a-form-item>
<a-form-item label="Max Concurrent Upload">
<a-input v-model.trim="inbound.stream.splithttp.scMaxConcurrentPosts"></a-input>
</a-form-item>
diff --git a/web/html/xui/inbound_info_modal.html b/web/html/xui/inbound_info_modal.html
index 36f165c6..0e0a18fc 100644
--- a/web/html/xui/inbound_info_modal.html
+++ b/web/html/xui/inbound_info_modal.html
@@ -58,6 +58,14 @@
</td>
</tr>
</template>
+ <template v-if="inbound.isSplithttp">
+ <tr>
+ <td>Mode</td>
+ <td>
+ <a-tag>[[ inbound.stream.splithttp.mode ]]</a-tag>
+ </td>
+ </tr>
+ </template>
<template v-if="inbound.isKcp">
<tr>
<td>kcp {{ i18n "encryption" }}</td>