diff options
Diffstat (limited to 'web/html')
| -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> |
