wireshark/epan/dissectors/packet-cipmotion.h
Dylan Ulis 9e20822ae2 CIP Motion: Attribute updates
1. Add more attribute definitions
2. Remove data that was only in object revision 1. This conflicts with
   the newer object definitions. No actual devices implemented this
   version.
3. Correct data from enum --> bit fields
4. Extract Methods into functions that are shared by attributes
   and other parsing.

Change-Id: I5a08188466349b7d735346981b16e096ae68032d
Reviewed-on: https://code.wireshark.org/review/28776
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-07-21 19:24:42 +00:00

20 lines
484 B
C

/* packet-cipmotion.h
* Routines for CIP (Common Industrial Protocol) Motion dissection
* CIP Motion Home: www.odva.org
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef PACKET_CIPMOTION_H
#define PACKET_CIPMOTION_H
#include "packet-cip.h" // For attribute_info_t
extern attribute_info_t cip_motion_attribute_vals[14];
#endif /* PACKET_CIPMOTION_H */