Reputation: 123
How can I get the length of buffer data in dissector function. The type is userdata
in lua, it points to raw memory. I have tried to convert it to metatable, but still cannot get the length of it.
Upvotes: 4
Views: 3787
Reputation: 2865
Try this
function dissector(buffer,pinfo,tree)
print(buffer:len())
end
Upvotes: 11