wireshark/fix
Gerald Combs 8a6daf2a1c From Didier Gautheron via bug 3052:
Add:
- FIX 4.0 to 4.4 fields, auto generated with XSLT stylesheets applied on
http://www.quickfixengine.org/ xml files (not included quickfixengine code is
BSD but xml files have no copyright).

- value_string functions for string keys, added to value_string.c.

- FIX desegmentation, it doesn't work well with malformed FIX PDU.

svn path=/trunk/; revision=28478
2009-05-26 00:49:38 +00:00
..
FIX.xml From Didier Gautheron via bug 3052: 2009-05-26 00:49:38 +00:00
FIX40.xml From Didier Gautheron via bug 3052: 2009-05-26 00:49:38 +00:00
FIX41.xml From Didier Gautheron via bug 3052: 2009-05-26 00:49:38 +00:00
FIX42.xml From Didier Gautheron via bug 3052: 2009-05-26 00:49:38 +00:00
FIX43.xml From Didier Gautheron via bug 3052: 2009-05-26 00:49:38 +00:00
FIX44.xml From Didier Gautheron via bug 3052: 2009-05-26 00:49:38 +00:00
README From Didier Gautheron via bug 3052: 2009-05-26 00:49:38 +00:00
Values.xsl From Didier Gautheron via bug 3052: 2009-05-26 00:49:38 +00:00
hfDecl.xsl From Didier Gautheron via bug 3052: 2009-05-26 00:49:38 +00:00
hfField.xsl From Didier Gautheron via bug 3052: 2009-05-26 00:49:38 +00:00
hfList.xsl From Didier Gautheron via bug 3052: 2009-05-26 00:49:38 +00:00

README

FIX4x.xml from quickfixengine.org 

FIX.xml is a modified FIX44.xml with fields from previous versions.
cf new field attributes 'since' and 'until'.

hfField.xsl: generate hf_register_info list.
hfDecl.xsl : generate fix_field list.
Values.xsl : generate value_string and string_string tables.
hfList.xsl : find the last tag number.

packet-fix.h: Values.xsl hfDecl.xsl hfField.xsl output on FIX.xml follow
by output of hfList.xsl on FIX40.xml to FIX44.xml
example
(xsltproc Values.xsl FIX.xml ; xsltproc hfDecl.xsl FIX.xml; xsltproc hfField.xsl FIX.xml;\
xsltproc hfList.xsl FIX40.xml; xsltproc hfList.xsl FIX41.xml; xsltproc hfList.xsl FIX42.xml;\
xsltproc hfList.xsl FIX43.xml; xsltproc hfList.xsl FIX44.xml) > packet-fix.h

NOTES:
- fix_field structure should use 'since' and 'until' attributes for removed
tags.