diff options
| author | mhsanaei <ho3ein.sanaei@gmail.com> | 2024-12-04 00:24:34 +0300 |
|---|---|---|
| committer | mhsanaei <ho3ein.sanaei@gmail.com> | 2024-12-04 00:24:34 +0300 |
| commit | b859327b8ad84dd2b44b9bd3a336a63646833701 (patch) | |
| tree | 7584764c810c6d0b7d4252654797cd6270e9a669 /web/html/xui/form/outbound.html | |
| parent | 3e8fc59213e8567715affb8bff4e398a1f7f7fbc (diff) | |
splithttp to xhttp
Diffstat (limited to 'web/html/xui/form/outbound.html')
| -rw-r--r-- | web/html/xui/form/outbound.html | 12 |
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> |
