mirror of
https://github.com/alireza0/x-ui.git
synced 2026-03-17 14:29:46 +00:00
41 lines
2.0 KiB
HTML
41 lines
2.0 KiB
HTML
{{define "form/streamQUIC"}}
|
|
<a-form layout="inline">
|
|
<table width="100%" class="ant-table-tbody">
|
|
<tr>
|
|
<td>{{ i18n "pages.inbounds.stream.quic.encryption" }}</td>
|
|
<td>
|
|
<a-form-item>
|
|
<a-select v-model="inbound.stream.quic.security" style="width: 200px;" :dropdown-class-name="siderDrawer.isDarkTheme ? 'ant-card-dark' : ''">
|
|
<a-select-option value="none">none</a-select-option>
|
|
<a-select-option value="aes-128-gcm">aes-128-gcm</a-select-option>
|
|
<a-select-option value="chacha20-poly1305">chacha20-poly1305</a-select-option>
|
|
</a-select>
|
|
</a-form-item>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{{ i18n "password" }}</td>
|
|
<td>
|
|
<a-form-item>
|
|
<a-input v-model.trim="inbound.stream.quic.key" style="width: 200px;"></a-input>
|
|
</a-form-item>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{{ i18n "camouflage" }}</td>
|
|
<td>
|
|
<a-form-item>
|
|
<a-select v-model="inbound.stream.quic.type" style="width: 200px;" :dropdown-class-name="siderDrawer.isDarkTheme ? 'ant-card-dark' : ''">
|
|
<a-select-option value="none">none (not camouflage)</a-select-option>
|
|
<a-select-option value="srtp">srtp (video call)</a-select-option>
|
|
<a-select-option value="utp">utp (BT download)</a-select-option>
|
|
<a-select-option value="wechat-video">wechat-video (WeChat video)</a-select-option>
|
|
<a-select-option value="dtls">dtls (DTLS 1.2 packages)</a-select-option>
|
|
<a-select-option value="wireguard">wireguard (wireguard packages)</a-select-option>
|
|
</a-select>
|
|
</a-form-item>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</a-form>
|
|
{{end}} |