Hi All, I am using FIX Dissector to decode FIX Protocol, and I got following message. SendingTime (52): 20120927-19:28:04.909 I am sure there should be 6 digits for milliseconds and microseconds, for instance, 19:28:04.909XXX. Can I show the all 6 digits by changing some settings? Thanks. asked 28 Sep '12, 07:49 ylin |
One Answer:
This is great. Could you let me know how you are doing it, as I am not able to dissect it yet, I tried this program but its not working. ------------------------------------------------------------------------------from scapy.all import * def ExtractFIX(pcap): """A generator that iterates over the packets in a scapy pcap iterable and extracts the FIX messages. In the case where there are multiple FIX messages in one packet, yield each FIX message individually.""" for packet in pcap: if packet.haslayer('Raw'): # Only consider TCP packets which contain raw data. load = packet.getlayer('Raw').load
answered 09 Feb '16, 22:02 fixmessenger |