File tree 3 files changed +12
-9
lines changed
app/src/main/java/io/nekohasekai/sagernet
3 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -173,15 +173,15 @@ data class ProxyEntity(
173
173
}
174
174
}
175
175
176
- fun displayType () = when (type) {
176
+ fun displayType (): String = when (type) {
177
177
TYPE_SOCKS -> socksBean!! .protocolName()
178
178
TYPE_HTTP -> if (httpBean!! .isTLS()) " HTTPS" else " HTTP"
179
179
TYPE_SS -> " Shadowsocks"
180
180
TYPE_VMESS -> if (vmessBean!! .isVLESS) " VLESS" else " VMess"
181
181
TYPE_TROJAN -> " Trojan"
182
182
TYPE_TROJAN_GO -> " Trojan-Go"
183
183
TYPE_NAIVE -> " Naïve"
184
- TYPE_HYSTERIA -> " Hysteria"
184
+ TYPE_HYSTERIA -> " Hysteria" + hysteriaBean !! .protocolVersion
185
185
TYPE_SSH -> " SSH"
186
186
TYPE_WG -> " WireGuard"
187
187
TYPE_TUIC -> " TUIC"
Original file line number Diff line number Diff line change @@ -583,18 +583,20 @@ fun buildSingBoxOutboundTLS(bean: StandardV2RayBean): OutboundTLSOptions? {
583
583
if (bean.sni.isNotBlank()) server_name = bean.sni
584
584
if (bean.alpn.isNotBlank()) alpn = bean.alpn.listByLineOrComma()
585
585
if (bean.certificates.isNotBlank()) certificate = bean.certificates
586
- if (bean.utlsFingerprint.isNotBlank()) {
587
- utls = OutboundUTLSOptions ().apply {
588
- enabled = true
589
- fingerprint = bean.utlsFingerprint
590
- }
591
- }
586
+ var fp = bean.utlsFingerprint
592
587
if (bean.realityPubKey.isNotBlank()) {
593
588
reality = OutboundRealityOptions ().apply {
594
589
enabled = true
595
590
public_key = bean.realityPubKey
596
591
short_id = bean.realityShortId
597
592
}
593
+ if (fp.isNullOrBlank()) fp = " chrome"
594
+ }
595
+ if (fp.isNotBlank()) {
596
+ utls = OutboundUTLSOptions ().apply {
597
+ enabled = true
598
+ fingerprint = fp
599
+ }
598
600
}
599
601
}
600
602
}
Original file line number Diff line number Diff line change 2
2
3
3
package io.nekohasekai.sagernet.ktx
4
4
5
+ import io.nekohasekai.sagernet.BuildConfig
5
6
import io.nekohasekai.sagernet.fmt.AbstractBean
6
7
import moe.matsuri.nb4a.utils.NGUtil
7
8
import okhttp3.HttpUrl
@@ -62,4 +63,4 @@ fun mkPort(): Int {
62
63
return port
63
64
}
64
65
65
- const val USER_AGENT = " NekoBox/Android/1.0 (Prefer ClashMeta Format)"
66
+ const val USER_AGENT = " NekoBox/Android/" + BuildConfig . VERSION_NAME + " (Prefer ClashMeta Format)"
You can’t perform that action at this time.
0 commit comments