diff options
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 --> |
