diff options
| author | mhsanaei <ho3ein.sanaei@gmail.com> | 2024-06-18 13:49:20 +0300 |
|---|---|---|
| committer | mhsanaei <ho3ein.sanaei@gmail.com> | 2024-06-18 13:49:20 +0300 |
| commit | 7f2c11220f2d27ac1ad3fdc343b06dd77edd28f1 (patch) | |
| tree | e7e6b555f6edea2b4848f05e7aa936cb21735b24 /web/html/xui/form/outbound.html | |
| parent | 52b02fdef9a499efe99b2d32c78a7936fe34d4d6 (diff) | |
new - splithttp transport
splithttp inbound
splithttp outbound
change priority host for ws - httpupgrade (host>>headers)
Diffstat (limited to 'web/html/xui/form/outbound.html')
| -rw-r--r-- | web/html/xui/form/outbound.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/web/html/xui/form/outbound.html b/web/html/xui/form/outbound.html index c8b08321..a61f5c44 100644 --- a/web/html/xui/form/outbound.html +++ b/web/html/xui/form/outbound.html @@ -204,6 +204,7 @@ <a-select-option value="quic">QUIC</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> </a-form-item> <template v-if="outbound.stream.network === 'tcp'"> @@ -325,6 +326,16 @@ <a-input v-model.trim="outbound.stream.httpupgrade.path"></a-input> </a-form-item> </template> + + <!-- splithttp --> + <template v-if="outbound.stream.network === 'splithttp'"> + <a-form-item label='{{ i18n "host" }}'> + <a-input v-model="outbound.stream.splithttp.host"></a-input> + </a-form-item> + <a-form-item label='{{ i18n "path" }}'> + <a-input v-model.trim="outbound.stream.splithttp.path"></a-input> + </a-form-item> + </template> </template> <!-- tls settings --> |
