What happens with removed fields? Such as ipv6.traffic_class.dscp which is no longer present in Wireshark 2.0? Any replacements or something? Are these changes documented somewhere? asked 23 Feb '16, 05:34 Aliniel |
2 Answers:
Unfortunately not really, except via the git commit messages, and even then it may not be spelt out in detail. Arguably there should be a list of fields that have changed between releases, the command In the case of the field you mention, that was replaced by answered 23 Feb '16, 05:58 grahamb ♦ |
All display filter fields for all Wireshark releases since 1.0.0 are documented online at https://www.wireshark.org/docs/dfref/. For ipv6.traffic_class.dscp specifically, refer to https://www.wireshark.org/docs/dfref/i/ipv6.html where you find the following:
As Graham mentioned, the field was replaced with ipv6.tclass.dscp, documented as:
Here is the specific commit where the change was made and the reason for it: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commitdiff;h=9162177db968f1310d867c32d2920298302f01b5 answered 23 Feb '16, 06:43 cmaynard ♦♦ |
Yeah, I know about the list. Still, there should be a note or a reference for the fields that got replaced, in my opinion.