version 11
UDP_New (localPort; udp_ID) Integer
Parameter | Type | Description | |
localPort | Integer | Local port used for UDP socket | |
(0 = find any unused port to use) | |||
udp_ID | Longint | UDP socket reference | |
Function result | Integer | Error code |
Description
The UDP_New command can be used to create a UDP socket by passing the local port number to be used in the localPort parameter. If you pass 0, the command will find any unused port. The UDP socket reference will be returned in the udp_ID parameter. Once this socket is no longer needed, remember to close it using UDP_Delete in order to free up memory.
See Also