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:
Diffstat (limited to 'web/html/xui/form/outbound.html')
-rw-r--r--web/html/xui/form/outbound.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/web/html/xui/form/outbound.html b/web/html/xui/form/outbound.html
index a337ab28..e6d12ee4 100644
--- a/web/html/xui/form/outbound.html
+++ b/web/html/xui/form/outbound.html
@@ -273,7 +273,7 @@
<a-select-option value="http">HTTP</a-select-option>
<a-select-option value="grpc">gRPC</a-select-option>
<a-select-option value="httpupgrade">HTTPUpgrade</a-select-option>
- <a-select-option value="splithttp">SplitHTTP (XHTTP)</a-select-option>
+ <a-select-option value="xhttp">XHTTP</a-select-option>
</a-select>
</a-form-item>
<template v-if="outbound.stream.network === 'tcp'">
@@ -375,16 +375,16 @@
</a-form-item>
</template>
- <!-- splithttp -->
- <template v-if="outbound.stream.network === 'splithttp'">
+ <!-- xhttp -->
+ <template v-if="outbound.stream.network === 'xhttp'">
<a-form-item label='{{ i18n "host" }}'>
- <a-input v-model="outbound.stream.splithttp.host"></a-input>
+ <a-input v-model="outbound.stream.xhttp.host"></a-input>
</a-form-item>
<a-form-item label='{{ i18n "path" }}'>
- <a-input v-model.trim="outbound.stream.splithttp.path"></a-input>
+ <a-input v-model.trim="outbound.stream.xhttp.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 v-model="outbound.stream.xhttp.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>