Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ private fun generateDomain(domainId: Int): String {
if (domainId < 2) {
return FIXED_SERVER_HOSTS[domainId]
}
require(domainId < 256) {
require(domainId in 256..65535) {
String.format(Locale.US, "This domainId: %d was an unrecognized assigned domain value.", domainId)
}
val buffer = ByteBuffer.allocate(31).apply {
Expand Down