Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
packet-h323.h
1 /* Do not modify this file. Changes will be overwritten. */
2 /* Generated automatically by the ASN.1 to Wireshark dissector compiler */
3 /* packet-h323.h */
4 /* asn2wrs.py -p h323 -c ./h323.cnf -s ./packet-h323-template -D . -O ../.. RAS-PROTOCOL-TUNNEL.asn ROBUSTNESS-DATA.asn */
5 
6 /* Input file: packet-h323-template.h */
7 
8 #line 1 "./asn1/h323/packet-h323-template.h"
9 /* packet-h323.h
10  * Routines for H.235 packet dissection
11  * 2007 Tomas Kukosa
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_H323_H
21 #define PACKET_H323_H
22 
23 /* Generic Extensible Framework */
24 
25 #define GEF_CTX_SIGNATURE 0x47454658 /* "GEFX" */
26 
27 typedef struct _gef_ctx_t {
28  guint32 signature;
29  struct _gef_ctx_t *parent;
30  /*
31  H323-MESSAGES
32  FeatureDescriptor/<id>
33  <id>
34  GenericData/<id>
35  <id>
36  MULTIMEDIA-SYSTEM-CONTROL
37  GenericInformation/<id>[-<subid>]
38  <id>
39  GenericMessage/<id>[-<subid>]
40  <id>
41  GenericCapability/<id>
42  collapsing/<id>
43  nonCollapsing/<id>
44  nonCollapsingRaw
45  EncryptionSync
46  <id>
47  */
48  const gchar *type;
49  const gchar *id;
50  const gchar *subid;
51  const gchar *key;
52 } gef_ctx_t;
53 
54 extern gef_ctx_t* gef_ctx_alloc(gef_ctx_t *parent, const gchar *type);
55 extern gboolean gef_ctx_check_signature(gef_ctx_t *gefx);
56 extern gef_ctx_t* gef_ctx_get(void *ptr);
57 extern void gef_ctx_update_key(gef_ctx_t *gefx);
58 
59 #endif /* PACKET_H323_H */
60 
Definition: packet-h323-template.h:19