Files
trihuy-russian/web/html/xui/form/stream/stream_quic.html
T
2023-03-17 19:37:49 +03:30

24 lines
1.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{{define "form/streamQUIC"}}
<a-form layout="inline">
<a-form-item label='{{ i18n "pages.inbounds.stream.quic.encryption" }}'>
<a-select v-model="inbound.stream.quic.security" style="width: 165px;" :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>
<a-form-item label='{{ i18n "password" }}'>
<a-input v-model.trim="inbound.stream.quic.key"></a-input>
</a-form-item>
<a-form-item label='{{ i18n "camouflage" }}'>
<a-select v-model="inbound.stream.quic.type" style="width: 280px;" :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(camouflage video call)</a-select-option>
<a-select-option value="utp">utp(camouflage BT download)</a-select-option>
<a-select-option value="wechat-video">wechat-video(camouflage WeChat video)</a-select-option>
<a-select-option value="dtls">dtls(camouflage DTLS 1.2 packages)</a-select-option>
<a-select-option value="wireguard">wireguard(camouflage wireguard packages)</a-select-option>
</a-select>
</a-form-item>
</a-form>
{{end}}