bind

suspend fun bind(localAddress: SocketAddress? = null, configure: SocketOptions.UDPSocketOptions.() -> Unit = {}): BoundDatagramSocket

Bind server socket to listen to localAddress.

Report a problem


suspend fun bind(hostname: String = "0.0.0.0", port: Int = 0, configure: SocketOptions.UDPSocketOptions.() -> Unit = {}): BoundDatagramSocket

Bind server socket at port to listen to hostname.

Report a problem