Skip to content

Commit

Permalink
Merge pull request 2dust#2956 from xfree-man/master
Browse files Browse the repository at this point in the history
Add observatory to V2rayConfig, to enable load balancing features in a custom config
  • Loading branch information
2dust committed Mar 26, 2024
2 parents 8154812 + ff75d3f commit 1ce9b7c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion V2rayNG/app/src/main/kotlin/com/v2ray/ang/dto/V2rayConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ data class V2rayConfig(
val transport: Any? = null,
val reverse: Any? = null,
var fakedns: Any? = null,
val browserForwarder: Any? = null) {
val browserForwarder: Any? = null,
var observatory: Any? = null,
var burstObservatory: Any? = null) {
companion object {
const val DEFAULT_PORT = 443
const val DEFAULT_SECURITY = "auto"
Expand Down

0 comments on commit 1ce9b7c

Please sign in to comment.