Quote from: Trunning on May 11, 2010, 01:12 PM
Can I get an example on how to convert the DWORD IP to an actual IP Address?
307491135 is the DWORD
3f f1 53 12 are the 4 bytes
63.241.83.18 is the actual IP
Each byte is one octet of the IP address. sprintf("%d.%d.%d.%d", byte[0] byte[1], byte[2], byte[3]); would do the trick.