summaryrefslogtreecommitdiffstats
path: root/fix/README
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
commite4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc (patch)
tree68cb5ef9081156392f1dd62a00c6ccc1451b93df /fix/README
parentInitial commit. (diff)
downloadwireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.tar.xz
wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.zip
Adding upstream version 4.2.2.upstream/4.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'fix/README')
-rw-r--r--fix/README24
1 files changed, 24 insertions, 0 deletions
diff --git a/fix/README b/fix/README
new file mode 100644
index 00000000..7c2b0f85
--- /dev/null
+++ b/fix/README
@@ -0,0 +1,24 @@
+FIX4x.xml from quickfixengine.org
+FIX5x.xml from http://sourceforge.net/projects/quickfix/files/
+
+FIX.xml is a modified FIX50SP2.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.
+
+TODO:
+ - make packet-fix.h autogenerated