EasyUDPSocket.Bind

From Xojo Documentation

Method

EasyUDPSocket.Bind(Port as Integer)

Supported for all project types and targets.

Binds the socket to the specified port.

Example

This example binds the socket to any available port between 8192 and 65535 (Note: the other member of the group must then use the same port, so you need to find a way to communicate this port to the others):

Var success As Boolean = True
Do
Try
Me.Bind (Rnd * (65536 - 8192) + 8192)
Catch error As RuntimeException
success = False
End Try
Loop Until success