UDPSocketBuilder
UDP socket builder
Functions
Link copied to clipboard
suspend fun bind(localAddress: SocketAddress? = null, configure: SocketOptions.UDPSocketOptions.() -> Unit = {}): BoundDatagramSocket
Bind server socket to listen to localAddress.
Link copied to clipboard
Configure socket options in block function
Link copied to clipboard
suspend fun connect(remoteAddress: SocketAddress, localAddress: SocketAddress? = null, configure: SocketOptions.UDPSocketOptions.() -> Unit = {}): ConnectedDatagramSocket
Create a datagram socket to listen datagrams at localAddress and set to remoteAddress.