I have a lua function that converts ip addresses to 32 bit int
local str = "127.0.0.1" local o1,o2,o3,o4 = str:match("(%d%d?%d?)%.(%d%d?%d?)%.(%d%d?%d?)%.(%d%d?%d?)" ) local num = 2^24*o1 + 2^16*o2 + 2^8*o3 + o4
I would like to have an inverse function, i.e. get 4 bytes from int
source share