Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
packet-sv.h
1 /* Do not modify this file. Changes will be overwritten. */
2 /* Generated automatically by the ASN.1 to Wireshark dissector compiler */
3 /* packet-sv.h */
4 /* asn2wrs.py -b -p sv -c ./sv.cnf -s ./packet-sv-template -D . -O ../.. sv.asn */
5 
6 /* Input file: packet-sv-template.h */
7 
8 #line 1 "./asn1/sv/packet-sv-template.h"
9 /* packet-sv.h
10  * Routines for IEC 61850 Sampled Vales packet dissection
11  * Michael Bernhard 2008
12  *
13  * Wireshark - Network traffic analyzer
14  * By Gerald Combs <gerald@wireshark.org>
15  * Copyright 1998 Gerald Combs
16  *
17  * SPDX-License-Identifier: GPL-2.0-or-later
18  */
19 
20 #ifndef __PACKET_SV_H__
21 #define __PACKET_SV_H__
22 
23 #define IEC61850_SV_MAX_PHSMEAS_ENTRIES 20
24 
25 typedef struct _sv_phs_meas {
26  gint32 value;
27  guint32 qual;
28 } sv_phs_meas;
29 
30 typedef struct _sv_frame_data {
31  guint16 smpCnt;
32  guint8 smpSynch;
33  guint8 num_phsMeas;
34  sv_phs_meas phsMeas[IEC61850_SV_MAX_PHSMEAS_ENTRIES];
35  guint16 smpMod;
37 
38 #endif /*__PACKET_SV_H__*/
Definition: packet-sv-template.h:22
Definition: packet-sv-template.h:17