Port

open class Port : Comparable<Port> (source)

Holder for an integer between MIN and MAX (inclusive).

e.g.

assertIs(443.toPort())
assertIs("80".toPort())
"http://example.com:8080".toPort()
"http://[::1]:8181".toPort()

See also

io.matthewnelson.kmp.tor.runtime.core.util.isAvailableSync

Inheritors

Types

Link copied to clipboard
object Companion
Link copied to clipboard
class Ephemeral : Port

A Port with a more constrained range of Ephemeral.MIN to Ephemeral.MIN (inclusive), in accordance with that specified in RFC 6056 section 3.2

Link copied to clipboard
object HTTP : Port

Static instance for the default http port 80

Link copied to clipboard
object HTTPS : Port

Static instance for the default https port 443

Link copied to clipboard
object ZERO : Port

Static instance for port 0

Properties

Link copied to clipboard
@JvmField
val value: Int

Functions

Link copied to clipboard
operator override fun compareTo(other: Port): Int
Link copied to clipboard
expect suspend fun Port.isAvailableAsync(host: LocalHost): Boolean

Checks if the TCP port is available on LocalHost or not.

actual suspend fun Port.isAvailableAsync(host: LocalHost): Boolean

Checks if the TCP port is available on LocalHost or not.

actual suspend fun Port.isAvailableAsync(host: LocalHost): Boolean

Checks if the TCP port is available on LocalHost or not.

Link copied to clipboard
fun Port.isAvailableSync(host: LocalHost): Boolean

Checks if the TCP port is available on LocalHost or not.