aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ethertype.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2015-11-26 12:25:43 -0800
committerGuy Harris <guy@alum.mit.edu>2015-11-26 20:26:19 +0000
commit677faf2bd4bf233a7d8243b5c5abccf3111cfc5c (patch)
treef7a9446bfea2b397dc0ece678063efa2845daadf /epan/dissectors/packet-ethertype.c
parent6da516821d24b8857fe3a55703e517db0106d23c (diff)
Don't allow the "Ethertype" pseudo-protocol's dissection to be disabled.
It's not a real protocol, it's a helper dissector for various protocols, and it makes no sense to disable it; doing so means that the Ethertype field itself isn't disabled, and allowing it to be disabled means that you can't do "Disable All", and manually enable Ethernet, IPv4, IPv6, and TCP to disable dissection of protocols running atop TCP on Ethernet. (See https://ask.wireshark.org/questions/48011/enabled-protocols-negation-of-disabled-proto for an example of somebody who wants to do exactly that.) Change-Id: Ibdd6ef53503de548e14cecc3766040c3a0b101d4 Reviewed-on: https://code.wireshark.org/review/12207 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/dissectors/packet-ethertype.c')
-rw-r--r--epan/dissectors/packet-ethertype.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/dissectors/packet-ethertype.c b/epan/dissectors/packet-ethertype.c
index b2ab5ab1b7..793b290563 100644
--- a/epan/dissectors/packet-ethertype.c
+++ b/epan/dissectors/packet-ethertype.c
@@ -392,6 +392,8 @@ proto_register_ethertype(void)
proto_ethertype = proto_register_protocol("Ethertype", "Ethertype", "ethertype");
+ /* This isn't a real protocol, so you can't disable its dissection. */
+ proto_set_cant_toggle(proto_ethertype);
new_register_dissector("ethertype", dissect_ethertype, proto_ethertype);