Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix range
Browse files Browse the repository at this point in the history
Pururun committed Sep 16, 2024
1 parent 7b0c6e5 commit 00bf935
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -8,4 +8,4 @@ val UDP2TCP_PRESET_PORTS = listOf(Port(80), Port(5001))
val SHADOWSOCKS_PRESET_PORTS = emptyList<Port>()
val SHADOWSOCKS_AVAILABLE_PORTS =
// Currently we consider all ports to be available
listOf(PortRange(IntRange(Port.MIN_VALUE, Port.MAX_VALUE)))
listOf(PortRange(Port.MIN_VALUE..Port.MAX_VALUE))

0 comments on commit 00bf935

Please sign in to comment.