Hi there, I would like to convert this C source code to autoit. 
I am not sure about this line though: unsigned char msg[48]={010,0,0,0,0,0,0,0,0} 
What would this be in autoit? 
 
$packet = ??? 
 
ie. the packet I would send using: 
 UDPSend($socket, $packet)
 
notes from below: 
/* 
 * build a message.  Our message is all zeros except for a one in the 
 * protocol version field 
 * msg[] in binary is 00 001 000 00000000  
 * it should be a total of 48 bytes long 
*/ 
 
 
Thanks 
 
 
 
 
/* 
 *