diff options
| author | mhsanaei <ho3ein.sanaei@gmail.com> | 2024-11-03 12:51:53 +0300 |
|---|---|---|
| committer | mhsanaei <ho3ein.sanaei@gmail.com> | 2024-11-03 12:51:53 +0300 |
| commit | adb08a60cfb7aa30f10410f78a82daf203df28c6 (patch) | |
| tree | 167fc43d83f4ebb44aae221b730a1966a8ec1a0a /web | |
| parent | e3576e8a856b5edd2fe8ffac06ab255f6a1df342 (diff) | |
rename - splithttp to xhttp
Diffstat (limited to 'web')
| -rw-r--r-- | web/assets/js/model/outbound.js | 2 | ||||
| -rw-r--r-- | web/html/xui/form/outbound.html | 6 | ||||
| -rw-r--r-- | web/html/xui/form/stream/stream_settings.html | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/web/assets/js/model/outbound.js b/web/assets/js/model/outbound.js index d7338645..78078dd6 100644 --- a/web/assets/js/model/outbound.js +++ b/web/assets/js/model/outbound.js @@ -960,7 +960,7 @@ Outbound.BlackholeSettings = class extends CommonClass { Outbound.DNSSettings = class extends CommonClass { constructor( network = 'udp', - address = '1.1.1.1', + address = '', port = 53, nonIPQuery = 'drop', blockTypes = [] diff --git a/web/html/xui/form/outbound.html b/web/html/xui/form/outbound.html index 07b8f275..2f5d8207 100644 --- a/web/html/xui/form/outbound.html +++ b/web/html/xui/form/outbound.html @@ -267,13 +267,13 @@ <template v-if="outbound.canEnableStream()"> <a-form-item label='{{ i18n "transmission" }}'> <a-select v-model="outbound.stream.network" @change="streamNetworkChange" :dropdown-class-name="themeSwitcher.currentTheme"> - <a-select-option value="tcp">TCP</a-select-option> + <a-select-option value="tcp">TCP (RAW)</a-select-option> <a-select-option value="kcp">mKCP</a-select-option> <a-select-option value="ws">WebSocket</a-select-option> - <a-select-option value="http">H2</a-select-option> + <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</a-select-option> + <a-select-option value="splithttp">SplitHTTP (XHTTP)</a-select-option> </a-select> </a-form-item> <template v-if="outbound.stream.network === 'tcp'"> diff --git a/web/html/xui/form/stream/stream_settings.html b/web/html/xui/form/stream/stream_settings.html index 6d788090..89493e75 100644 --- a/web/html/xui/form/stream/stream_settings.html +++ b/web/html/xui/form/stream/stream_settings.html @@ -10,7 +10,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</a-select-option> + <a-select-option value="splithttp">SplitHTTP (XHTTP)</a-select-option> </a-select> </a-form-item> </a-form> |
