doc: Update README.dissector for GitLab.

Change-Id: I0fd52a17a80f3d4f6acc3c38d53c7d452e85382f
This commit is contained in:
Gerald Combs 2020-08-19 10:38:26 -07:00
parent 50550708cc
commit 9977ca2132
1 changed files with 18 additions and 14 deletions

View File

@ -2567,6 +2567,9 @@ section of epan/dissectors/CMakeLists.txt
1.10 Submitting code for your new dissector. 1.10 Submitting code for your new dissector.
See <https://www.wireshark.org/docs/wsdg_html_chunked/ChSrcContribute.html>
and <https://gitlab.com/wireshark/wireshark/-/wikis/Development/SubmittingPatches>.
- VERIFY that your dissector code does not use prohibited or deprecated APIs - VERIFY that your dissector code does not use prohibited or deprecated APIs
as follows: as follows:
perl <wireshark_root>/tools/checkAPIs.pl <source-filename(s)> perl <wireshark_root>/tools/checkAPIs.pl <source-filename(s)>
@ -2586,7 +2589,7 @@ section of epan/dissectors/CMakeLists.txt
- TEST YOUR DISSECTOR BEFORE SUBMITTING IT. - TEST YOUR DISSECTOR BEFORE SUBMITTING IT.
Use fuzz-test.sh and/or randpkt against your dissector. These are Use fuzz-test.sh and/or randpkt against your dissector. These are
described at <https://wiki.wireshark.org/FuzzTesting>. described at <https://gitlab.com/wireshark/wireshark/-/wikis/FuzzTesting>.
- Subscribe to <mailto:wireshark-dev[AT]wireshark.org> by sending an email to - Subscribe to <mailto:wireshark-dev[AT]wireshark.org> by sending an email to
<mailto:wireshark-dev-request[AT]wireshark.org?body="help"> or visiting <mailto:wireshark-dev-request[AT]wireshark.org?body="help"> or visiting
@ -2600,25 +2603,26 @@ section of epan/dissectors/CMakeLists.txt
should be a summary of the changes followed by an empty line and a more should be a summary of the changes followed by an empty line and a more
verbose description. verbose description.
- 'git push origin HEAD:refs/for/master' to push the changes to Gerrit. (If - 'git push downstream HEAD' to push the changes to GitLab. (This assumes
you previously ran 'git config --add remote.origin.push HEAD:refs/for/master' that you have a remote named "downstream" that points to a fork of
then only 'git push' is needed.) https://gitlab.com/wireshark/wireshark.)
- Create a Wiki page on the protocol at <https://wiki.wireshark.org>. - Create a Wiki page on the protocol at <https://gitlab.com/wireshark/editor-wiki>.
(You'll need to request access to https://gitlab.com/wireshark/wiki-editors.)
A template is provided so it is easy to setup in a consistent style. A template is provided so it is easy to setup in a consistent style.
See: <https://wiki.wireshark.org/HowToEdit> See: <https://gitlab.com/wireshark/wireshark/-/wikis/HowToEdit>
and <https://wiki.wireshark.org/ProtocolReference> and <https://gitlab.com/wireshark/wireshark/-/wikis/ProtocolReference>
- If possible, add sample capture files to the sample captures page at - If possible, add sample capture files to the sample captures page at
<https://wiki.wireshark.org/SampleCaptures>. These files are used by <https://gitlab.com/wireshark/wireshark/-/wikis/SampleCaptures>. These
the automated build system for fuzz testing. files are used by the automated build system for fuzz testing.
- If you don't think the wiki is the right place for your sample capture, - If you don't think the wiki is the right place for your sample capture,
submit a bug report to the Wireshark bug database, found at submit a bug report to the Wireshark issue database, found at
<https://bugs.wireshark.org>, qualified as an enhancement and attach your <https://gitlab.com/wireshark/wireshark/-/issues>, qualified as an
sample capture there. Normally a new dissector won't be accepted without enhancement and attach your sample capture there. Normally a new
a sample capture! If you open a bug be sure to cross-link your Gerrit dissector won't be accepted without a sample capture! If you open a
change and bug. bug be sure to cross-link your GitLab merge request.
2. Advanced dissector topics. 2. Advanced dissector topics.