Good day. I need to extract data from the FIX protocol dissector(included in Wireshark) by using the LUA scripting. So I'm able to get all static fields by using extractor variable(for example, fe_FIX_MsgType = Field.new("fix.MsgType") ). But I found a problem while trying to extract all the fields of FIX protocol of such message type as asked 19 Nov '10, 08:56 johndaw |
One Answer:
You probably need to ask field extractor to return a table. Run it in brackets {} like below
answered 27 Nov ‘10, 15:21 izopizo |
@johndaw I want to know how to get the Fix dissector written in LUA which is included in wireshark. Can any one please point me.