Hi all, I have put the encoding format in the proto_tree_add_item as ENC_BIG_ENDIAN. Will it show the values as calculated for Bid Endian when I call the corresponding dissector function for that PDU ? For example, 0x0102 will have its value displayed as 0x0201?? Please give a feedback . asked 13 Jun '14, 04:36 Amit Bhanja |
One Answer:
If you have a 2-byte field, where the first byte is 0x01 and the second byte is 0x02, then:
answered 13 Jun '14, 17:01 Guy Harris ♦♦ |