WINSOCK CREATE UDP CHANNEL
This will create a new channel that uses UDP. The return value is a Dword, denoting the channel that has been created. You will need it for further access to that channel. As always you should check if an error occurred using WINSOCK CHANNEL ERROR(). If its result is 0, then the channel has been created, and you can now begin to send data using WINSOCK SEND UDP MESSAGE. If you intend to recieve data on this UDP channel, then you need to bind it first to a local port. You can use this by calling WINSOCK BIND CHANNEL.

SYNTAX
Return Dword=WINSOCK CREATE UDP CHANNEL()

RELATED INFO
WINSOCK command menu
Index

EXAMPLE
Showcase-example 1
Showcase-example 2