Files
trihuy-russian/web/html/xui/form/stream/stream_quic.html
T

34 lines
1.6 KiB
HTML
Raw Normal View History

2023-02-09 22:48:06 +03:30
{{define "form/streamQUIC"}}
2024-02-27 18:58:35 +03:30
<a-form :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }">
2023-12-13 19:27:36 +03:30
<a-form-item label='{{ i18n "pages.inbounds.stream.quic.encryption" }}'>
<a-select v-model="inbound.stream.quic.security" :dropdown-class-name="themeSwitcher.currentTheme">
2024-01-09 09:10:40 +00:00
<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>
2023-12-13 19:27:36 +03:30
</a-select>
</a-form-item>
2024-01-10 17:49:53 +03:30
<a-form-item>
<template slot="label">
<a-tooltip>
<template slot="title">
<span>{{ i18n "reset" }}</span>
</template>
{{ i18n "password" }}
<a-icon @click="inbound.stream.quic.key = RandomUtil.randomSeq(10)"type="sync"> </a-icon>
</a-tooltip>
</template>
2023-12-13 19:27:36 +03:30
<a-input v-model.trim="inbound.stream.quic.key"></a-input>
2024-01-10 17:49:53 +03:30
</a-form-item>
2023-12-13 19:27:36 +03:30
<a-form-item label='{{ i18n "camouflage" }}'>
2024-02-27 18:58:35 +03:30
<a-select v-model="inbound.stream.quic.type" style="width: 50%" :dropdown-class-name="themeSwitcher.currentTheme">
2024-01-09 09:10:40 +00:00
<a-select-option value="none">None</a-select-option>
<a-select-option value="srtp">SRTP</a-select-option>
<a-select-option value="utp">uTP</a-select-option>
<a-select-option value="wechat-video">WeChat</a-select-option>
<a-select-option value="dtls">DTLS 1.2</a-select-option>
<a-select-option value="wireguard">WireGuard</a-select-option>
2023-12-13 19:27:36 +03:30
</a-select>
</a-form-item>
2023-02-09 22:48:06 +03:30
</a-form>
2023-12-19 13:06:36 +03:30
{{end}}