aboutsummaryrefslogtreecommitdiffstats
path: root/doc/README.developer
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2013-01-31 17:17:34 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2013-01-31 17:17:34 +0000
commit8ee3809edcc3a78004db5e3fad9808e1aded4838 (patch)
tree7940f42cccd9d4d0f09df664953fb8be7d0a7fba /doc/README.developer
parenteb5fcc8d01f09db77eba9c0aae69e27b9a7d4b51 (diff)
Add 2 more verification steps to run in the "Submitting code for your new dissector" section.
svn path=/trunk/; revision=47388
Diffstat (limited to 'doc/README.developer')
-rw-r--r--doc/README.developer8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/README.developer b/doc/README.developer
index 7ba5028600..d2a2dbe726 100644
--- a/doc/README.developer
+++ b/doc/README.developer
@@ -3062,6 +3062,14 @@ to the DISSECTOR_SRC section of epan/CMakeLists.txt
as follows:
perl <wireshark_root>/tools/checkAPIs.pl <source-filename(s)>
+ - VERIFY that your dissector code does not contain any header field related
+ problems:
+ perl <wireshark_root>/tools/checkhf.pl <source-filename(s)>
+
+ - VERIFY that your dissector code does not contain any display filter related
+ problems:
+ perl <wireshark_root>/tools/checkfiltername.pl <source-filename(s)>
+
- TEST YOUR DISSECTOR BEFORE SUBMITTING IT.
Use fuzz-test.sh and/or randpkt against your dissector. These are
described at <http://wiki.wireshark.org/FuzzTesting>.