summaryrefslogtreecommitdiff
path: root/tools/checkfiltername.pl
diff options
context:
space:
mode:
authorJames Lynch <lynch007@gmail.com>2015-12-01 19:03:27 -0500
committerMichael Mann <mmann78@netscape.net>2015-12-02 01:25:52 +0000
commit77f2ae0ce70434b4aa333731f0c669ce37519311 (patch)
tree60d13960f394f3c25499ab941de6687fcb3c538d /tools/checkfiltername.pl
parent266d3b7d519ba3d9c7e2d179f52bca5529cbd0b0 (diff)
downloadwireshark-77f2ae0ce70434b4aa333731f0c669ce37519311.tar.gz
eCMP Dissector - Extensible Control & Management Protocol
Developed by Emerson Industrial Automation (Control Techniques Division) eCMP is a protocol for setting up and controlling the devices in a factory automation system. eCMP has about 30 commands; most are embedded into TCP/IP messages, but cyclic data messages use the UDP protocol. Bug: 10562 Change-Id: I9a421f39dfbdbc9e28d8f7cba72c22e270064641 Reviewed-on: https://code.wireshark.org/review/3157 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'tools/checkfiltername.pl')
-rwxr-xr-xtools/checkfiltername.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/checkfiltername.pl b/tools/checkfiltername.pl
index 56fa859500..98a3eb3fd2 100755
--- a/tools/checkfiltername.pl
+++ b/tools/checkfiltername.pl
@@ -342,6 +342,7 @@ sub is_proto_dup_whitelist {
if (($_[0] eq "browser") && (index($_[1], "browser_") >= 0)) {return 1;}
if (($_[0] eq "dlsw") && (index($_[1], "dlsw_version") >= 0)) {return 1;}
if (($_[0] eq "dns") && (index($_[1], "dnskey") >= 0)) {return 1;}
+ if (($_[0] eq "ecmp") && (index($_[1], "ecmp_") >= 0)) {return 1;}
if (($_[0] eq "exported_pdu") && (index($_[1], "exported_pdu") >= 0)) {return 1;}
if (($_[0] eq "fc") && (index($_[1], "fctl") >= 0)) {return 1;}
if (($_[0] eq "fcs") && (index($_[1], "fcsmask") >= 0)) {return 1;}