stream_quic.html 1.4 KB

123456789101112131415161718192021222324
  1. {{define "form/streamQUIC"}}
  2. <a-form :colon="false" :label-col="{ md: {span:6} }" :wrapper-col="{ md: {span:14} }">
  3. <a-form-item label='{{ i18n "pages.inbounds.stream.quic.encryption" }}'>
  4. <a-select v-model="inbound.stream.quic.security" :dropdown-class-name="themeSwitcher.currentTheme">
  5. <a-select-option value="none">none</a-select-option>
  6. <a-select-option value="aes-128-gcm">aes-128-gcm</a-select-option>
  7. <a-select-option value="chacha20-poly1305">chacha20-poly1305</a-select-option>
  8. </a-select>
  9. </a-form-item>
  10. <a-form-item label='{{ i18n "password" }}'>
  11. <a-input v-model.trim="inbound.stream.quic.key"></a-input>
  12. </a-form-item>
  13. <a-form-item label='{{ i18n "camouflage" }}'>
  14. <a-select v-model="inbound.stream.quic.type" :dropdown-class-name="themeSwitcher.currentTheme">
  15. <a-select-option value="none">none (not camouflage)</a-select-option>
  16. <a-select-option value="srtp">SRTP (video call)</a-select-option>
  17. <a-select-option value="utp">UTP (BT Download)</a-select-option>
  18. <a-select-option value="wechat-video">wechat-video (WeChat video)</a-select-option>
  19. <a-select-option value="dtls">DTLS (DTLS 1.2 packages)</a-select-option>
  20. <a-select-option value="wireguard">WireGuard (WireGuard Packages)</a-select-option>
  21. </a-select>
  22. </a-form-item>
  23. </a-form>
  24. {{end}}