prettify alpn

This commit is contained in:
Alireza Ahmadi
2023-04-29 15:29:20 +02:00
parent 700973655c
commit 6e17c282e0
2 changed files with 3 additions and 3 deletions

View File

@@ -75,9 +75,9 @@ const UTLS_FINGERPRINT = {
};
const ALPN_OPTION = {
H3: "h3",
H2: "h2",
HTTP1: "http/1.1",
H2: "h2",
H3: "h3",
};
const SNIFFING_OPTION = {

View File

@@ -76,7 +76,7 @@
<td>
<a-form-item>
<a-checkbox-group v-model="inbound.stream.tls.alpn">
<a-checkbox v-for="key in ALPN_OPTION" :value="key">[[ key ]]</a-checkbox>
<a-checkbox v-for="key,value in ALPN_OPTION" :value="key">[[ value ]]</a-checkbox>
</a-checkbox-group>
</a-form-item>
</td>