stream_quic.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {{define "form/streamQUIC"}}
  2. <a-form layout="inline">
  3. <table width="100%" class="ant-table-tbody">
  4. <tr>
  5. <td>{{ i18n "pages.inbounds.stream.quic.encryption" }}</td>
  6. <td>
  7. <a-form-item>
  8. <a-select v-model="inbound.stream.quic.security" style="width: 250px;"
  9. :dropdown-class-name="themeSwitcher.currentTheme">
  10. <a-select-option value="none">none</a-select-option>
  11. <a-select-option value="aes-128-gcm">aes-128-gcm</a-select-option>
  12. <a-select-option value="chacha20-poly1305">chacha20-poly1305</a-select-option>
  13. </a-select>
  14. </a-form-item>
  15. </td>
  16. </tr>
  17. <tr>
  18. <td>{{ i18n "password" }}</td>
  19. <td>
  20. <a-form-item>
  21. <a-input v-model.trim="inbound.stream.quic.key" style="width: 250px;"></a-input>
  22. </a-form-item>
  23. </td>
  24. </tr>
  25. <tr>
  26. <td>{{ i18n "camouflage" }}</td>
  27. <td>
  28. <a-form-item>
  29. <a-select v-model="inbound.stream.quic.type" style="width: 280px;"
  30. :dropdown-class-name="themeSwitcher.currentTheme">
  31. <a-select-option value="none">none (not camouflage)</a-select-option>
  32. <a-select-option value="srtp">srtp (camouflage video call)</a-select-option>
  33. <a-select-option value="utp">utp (camouflage BT download)</a-select-option>
  34. <a-select-option value="wechat-video">wechat-video (camouflage WeChat video)</a-select-option>
  35. <a-select-option value="dtls">dtls (camouflage DTLS 1.2 packages)</a-select-option>
  36. <a-select-option value="wireguard">wireguard (camouflage wireguard packages)</a-select-option>
  37. </a-select>
  38. </a-form-item>
  39. </td>
  40. </tr>
  41. </table>
  42. </a-form>
  43. {{end}}