diff options
author | Bill Meier <wmeier@newsguy.com> | 2007-02-22 03:21:26 +0000 |
---|---|---|
committer | Bill Meier <wmeier@newsguy.com> | 2007-02-22 03:21:26 +0000 |
commit | 211cdda3864dcfcd3ceb091cc48c047020cdf548 (patch) | |
tree | 9572ffec220e613b7b1927d1fb4f5758cfe547ff /epan/dissectors/packet-cip.h | |
parent | 4fb922c2c8296e842c7888631a4f1d904f7a33b3 (diff) | |
download | wireshark-211cdda3864dcfcd3ceb091cc48c047020cdf548.tar.gz wireshark-211cdda3864dcfcd3ceb091cc48c047020cdf548.tar.bz2 wireshark-211cdda3864dcfcd3ceb091cc48c047020cdf548.zip |
From Ryan Wamsley: Add Connection Configuration Object support to EtherNet/IP dissector
svn path=/trunk/; revision=20897
Diffstat (limited to 'epan/dissectors/packet-cip.h')
-rw-r--r-- | epan/dissectors/packet-cip.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/epan/dissectors/packet-cip.h b/epan/dissectors/packet-cip.h index 1345f376bb..666422f3d2 100644 --- a/epan/dissectors/packet-cip.h +++ b/epan/dissectors/packet-cip.h @@ -6,6 +6,9 @@ * Magnus Hansson <mah@hms.se> * Joakim Wiberg <jow@hms.se> * + * Added support for Connection Configuration Object + * ryan wamsley * Copyright 2007 + * * $Id$ * * Wireshark - Network traffic analyzer @@ -51,6 +54,16 @@ #define SC_FWD_CLOSE 0x4E #define SC_UNCON_SEND 0x52 #define SC_FWD_OPEN 0x54 +/* Connection Configuration Object services */ +#define SC_KICK_TIMER 0x4B +#define SC_OPEN_CONN 0x4C +#define SC_CLOSE_CONN 0x4D +#define SC_STOP_CONN 0x4E /* collision with SC_FWD_CLOSE */ +#define SC_CHANGE_START 0x4F +#define SC_GET_STATUS 0x50 +#define SC_CHANGE_COMPLETE 0x51 +#define SC_AUDIT_CHANGE 0x52 /* collision with SC_UNCON_SEND */ + /* CIP Genral status codes */ #define CI_GRC_SUCCESS 0x00 |