Argument | Description |
as_url | String. The URL or IP to send UDP data to |
al_port | Long. The port to send UDP data to |
as_data | String. The data you wish to send via UDP |
ai_flags | Integer (Optional). A flags parameter specifying how the data is sent. See Usage below for details. If this parameter is omitted, a value of 0 will be used |
If the ai_flags parameter is 1, then escaped characters are allowed in the as_data parameter. Escaped characters can be coded as either hexadecimal or decimal. Escaped characters are preceeded by a backslash "\" character. If encoding in hexadecimal, follow the "\" character with "x" followed by two hexadecimal digits (0 - 9 and A-F) for an ASCII value of 0 to 255. If encoding in decimal, follow the "\" character with 3 decimal digits in the range of 0 to 255. The carriage return character can be escaped as either "\x0D" or "\013". If escaped characters are allowed (ai_flags = 1) then any backslash characters "\" you wish to send in the data MUST also be escaped as either "\x5C" or "\092".