~ubuntu-branches/ubuntu/gutsy/wireshark/gutsy-security

« back to all changes in this revision

Viewing changes to epan/dissectors/packet-epl.c

  • Committer: Bazaar Package Importer
  • Author(s): Frederic Peters
  • Date: 2007-04-01 08:58:40 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070401085840-or3qhrpv8alt1bwg
Tags: 0.99.5-1
* New upstream release.
* debian/patches/09_idl2wrs.dpatch: updated to patch idl2wrs.sh.in.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 *                     Institute of Embedded Systems (InES)
7
7
 *                     http://ines.zhwin.ch
8
8
 *                     
9
 
 *                     - Dominic B�chaz <bdo@zhwin.ch>
10
 
 *                     - Damir Bursic <bum@zhwin.ch>
11
 
 *                     - David B�chi <bhd@zhwin.ch>
12
 
 *
13
 
 *
14
 
 * $Id: packet-epl.c 19001 2006-08-23 07:41:43Z sahlberg $
 
9
 *                     - Dominic B�chaz <bdo[AT]zhwin.ch>
 
10
 *                     - Damir Bursic <bum[AT]zhwin.ch>
 
11
 *                     - David B�chi <bhd[AT]zhwin.ch>
 
12
 *
 
13
 *
 
14
 * $Id: packet-epl.c 20001 2006-11-27 14:39:06Z morriss $
15
15
 *
16
16
 * A plugin for:
17
17
 * Wireshark - Network traffic analyzer
155
155
/*NMTCommand*/
156
156
static gint hf_epl_asnd_nmtcommand_cid                       = -1;
157
157
static gint hf_epl_asnd_nmtcommand_cdat                      = -1;
158
 
static gint hf_epl_asnd_nmtcommand_nmtnetparameterset_mtu    = -1;
 
158
/*static gint hf_epl_asnd_nmtcommand_nmtnetparameterset_mtu    = -1;*/
159
159
static gint hf_epl_asnd_nmtcommand_nmtnethostnameset_hn      = -1;
160
160
static gint hf_epl_asnd_nmtcommand_nmtflusharpentry_nid      = -1;
161
161
static gint hf_epl_asnd_nmtcommand_nmtpublishtime_dt         = -1;
177
177
static gint hf_epl_asnd_sdo_cmd_data_size                    = -1;
178
178
 
179
179
static gint hf_epl_asnd_sdo_cmd_abort_code                   = -1;
180
 
static gint hf_epl_asnd_sdo_cmd_abort_flag                   = -1;
181
 
static gint hf_epl_asnd_sdo_cmd_segmentation_flag            = -1;
182
 
static gint hf_epl_asnd_sdo_cmd_cmd_valid_test               = -1;
 
180
/*static gint hf_epl_asnd_sdo_cmd_abort_flag                   = -1;*/
 
181
/*static gint hf_epl_asnd_sdo_cmd_segmentation_flag            = -1;*/
 
182
/*static gint hf_epl_asnd_sdo_cmd_cmd_valid_test               = -1;*/
183
183
 
184
 
static gint hf_epl_asnd_sdo_actual_command_id                = -1;
 
184
/*static gint hf_epl_asnd_sdo_actual_command_id                = -1;*/
185
185
 
186
186
static gint hf_epl_asnd_sdo_cmd_write_by_index_index         = -1;
187
187
static gint hf_epl_asnd_sdo_cmd_write_by_index_subindex      = -1;
188
188
static gint hf_epl_asnd_sdo_cmd_write_by_index_data          = -1;
189
 
static gint hf_epl_asnd_sdo_cmd_write_by_index_response      = -1;
 
189
/*static gint hf_epl_asnd_sdo_cmd_write_by_index_response      = -1;*/
190
190
 
191
191
static gint hf_epl_asnd_sdo_cmd_read_by_index_index          = -1;
192
192
static gint hf_epl_asnd_sdo_cmd_read_by_index_subindex       = -1;
193
193
static gint hf_epl_asnd_sdo_cmd_read_by_index_data           = -1;
194
 
static gint hf_epl_asnd_sdo_cmd_read_by_index_response       = -1;
 
194
/*static gint hf_epl_asnd_sdo_cmd_read_by_index_response       = -1;*/
195
195
 
196
 
static gint hf_epl_asnd_sdo_actual_segment_size              = -1;
197
 
static gint hf_epl_asnd_sdo_actual_payload_size_read         = -1;
 
196
/*static gint hf_epl_asnd_sdo_actual_segment_size              = -1;*/
 
197
/*static gint hf_epl_asnd_sdo_actual_payload_size_read         = -1;*/
198
198
 
199
199
/* Initialize the subtree pointers */
200
200
static gint ett_epl                 = -1;
1159
1159
{
1160
1160
    dissector_handle_t epl_handle;
1161
1161
    
1162
 
    epl_handle = create_dissector_handle(dissect_epl, proto_epl);
 
1162
    epl_handle = new_create_dissector_handle(dissect_epl, proto_epl);
1163
1163
    dissector_add("ethertype", ETHERTYPE_EPL_V2, epl_handle);
1164
1164
}