TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags
[wireshark-sm.git] / epan / dissectors / asn1 / sv / packet-sv-template.h
blobea9aae9a53c714d4004976cb493c67ca02e053f1
1 /* packet-sv.h
2 * Routines for IEC 61850 Sampled Vales packet dissection
3 * Michael Bernhard 2008
5 * Wireshark - Network traffic analyzer
6 * By Gerald Combs <gerald@wireshark.org>
7 * Copyright 1998 Gerald Combs
9 * SPDX-License-Identifier: GPL-2.0-or-later
12 #ifndef __PACKET_SV_H__
13 #define __PACKET_SV_H__
15 #define IEC61850_SV_MAX_PHSMEAS_ENTRIES 20
17 typedef struct _sv_phs_meas {
18 int32_t value;
19 uint32_t qual;
20 } sv_phs_meas;
22 typedef struct _sv_frame_data {
23 uint16_t smpCnt;
24 uint8_t smpSynch;
25 uint8_t num_phsMeas;
26 sv_phs_meas phsMeas[IEC61850_SV_MAX_PHSMEAS_ENTRIES];
27 uint16_t smpMod;
28 } sv_frame_data;
30 #endif /*__PACKET_SV_H__*/