Dissector bug info: field casn1xxxprotocol is not of type FT_NONE
Hi , My plugin able to dissect packet data and displaying fields as well,while displaying sub tree which is xxx protocol info getting below error messages. I guess,i didn't use propr "proto_add_XXX_format fuction" could any body has idea on below error. "Dissector bug info: [Expert Info (Error/Malformed): e:\wireshark\epan\proto.c:3664: field casn1xxxprotocol is not of type FT_NONE"
So what does your code do for that field, please show us the proto_add_xxx function and the hf declaration.
Hi Grahamb,
I refactored old dissector code, in place of proto_tree_add_text(frame_tree, tvb, 0, 0, "NO Length field") i used proto_tree_add_none_format()
grahamb, i hope you remember about last conversation, I was debugged the dissector loading issue and fixed it.issue due to external dll dependency.
So what does your code do for that field, please show us the proto_add_xxx function and the hf declaration?
It will display sub protocol tree.
I Refactored old dissector code,in that they used proto_tree_add_text() which is obsoleted instead of that i replaced with proto_tree_add_none_format to display sub protocol tree.