local cmsgpack = require("cmsgpack.safe")
local cpack = cmsgpack.pack
local cunpack = cmsgpack.unpack
...
local head, err = cpack(meta, status, response.header)
local meta, status, header, err = cunpack(head)
I have to unpack binary data using unpack as i do it in Perl. There is lpack but i have no idea how i can bring it to openresty?Or are there any other ability to unpack it using functionality from the box?