I'm in the middle of writing a Wireshark dissector for a custom protocol. However, I have a field which is a unsigned 32-bit integer. It's actually transmitted in little endian form. How do I force Wireshark to interpret it as such?
i.e. my hf_register_info struct contains
&hf_foo_length,
{ "Length", "foo.length", FT_UINT32, BASE_DEC,
NULL, 0x0, NULL, HFILL }
And in the dissect function I'm calling
proto_tree_add_item(foo_tree, hf_foo_length, tvb, offset, 4, FALSE);
To answer my last question. I discovered that if the last parameter of proto_tree_add_item if non-zero will make it interpret the field as little-endian.
See proto.h