diff options
| author | mhsanaei <ho3ein.sanaei@gmail.com> | 2025-03-05 15:14:17 +0300 |
|---|---|---|
| committer | mhsanaei <ho3ein.sanaei@gmail.com> | 2025-03-05 15:14:17 +0300 |
| commit | f0cfd48f664d822fb42698d28d68657e7c28d50e (patch) | |
| tree | babe99163ae1a9d203ba754a58d5331640b2ca05 /web/html/xui | |
| parent | f5aea03765dcf613db75cc9141b9a5eac32d1ff0 (diff) | |
Sockopt: Add addressPortStrategy
Diffstat (limited to 'web/html/xui')
| -rw-r--r-- | web/html/xui/form/outbound.html | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/web/html/xui/form/outbound.html b/web/html/xui/form/outbound.html index 8abef4aa..1cea3ce7 100644 --- a/web/html/xui/form/outbound.html +++ b/web/html/xui/form/outbound.html @@ -465,12 +465,17 @@ <a-select-option v-for="tag in ['', ...outModal.tags]" :value="tag">[[ tag ]]</a-select-option> </a-select> </a-form-item> - <a-form-item label="TCP Fast Open"> - <a-switch v-model="outbound.stream.sockopt.tcpFastOpen"></a-switch> + <a-form-item label='Address Port Strategy'> + <a-select v-model="outbound.stream.sockopt.addressPortStrategy" :dropdown-class-name="themeSwitcher.currentTheme"> + <a-select-option v-for="key in Address_Port_Strategy" :value="key">[[ key ]]</a-select-option> + </a-select> </a-form-item> <a-form-item label="Keep Alive Interval"> <a-input-number v-model.number="outbound.stream.sockopt.tcpKeepAliveInterval" :min="0"></a-input-number> </a-form-item> + <a-form-item label="TCP Fast Open"> + <a-switch v-model="outbound.stream.sockopt.tcpFastOpen"></a-switch> + </a-form-item> <a-form-item label="Multipath TCP"> <a-switch v-model.trim="outbound.stream.sockopt.tcpMptcp"></a-switch> </a-form-item> |
