Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / epan / dissectors / asn1 / novell_pkis / packet-novell_pkis-template.c
blobe739557ddc212b12876b0dd5effdf80e0de82dc5
1 /* packet-novell_pkis.c
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <gerald@wireshark.org>
5 * Copyright 1998 Gerald Combs
7 * SPDX-License-Identifier: GPL-2.0-or-later
8 */
10 #include "config.h"
12 #include <epan/packet.h>
13 #include <epan/expert.h>
14 #include <epan/prefs.h>
15 #include <epan/oids.h>
16 #include <epan/conversation.h>
17 #include <epan/asn1.h>
18 #include <wsutil/array.h>
20 #include "packet-per.h"
21 #include "packet-ber.h"
23 #include "packet-novell_pkis-hf.c"
24 #include "packet-novell_pkis-ett.c"
25 #include "packet-novell_pkis-fn.c"
27 void proto_register_novell_pkis (void);
28 void proto_reg_handoff_novell_pkis(void);
30 static int proto_novell_pkis;
32 void proto_reg_handoff_novell_pkis(void)
34 #include "packet-novell_pkis-dis-tab.c"
37 void proto_register_novell_pkis (void)
39 static hf_register_info hf[] = {
40 #include "packet-novell_pkis-hfarr.c"
42 static int *ett[] = {
43 #include "packet-novell_pkis-ettarr.c"
46 /* execute protocol initialization only once */
47 if (proto_novell_pkis > 0) return;
49 proto_novell_pkis = proto_register_protocol("Novell PKIS ASN.1 type", "novell_pkis", "novell_pkis");
50 proto_register_field_array (proto_novell_pkis, hf, array_length (hf));
51 proto_register_subtree_array (ett, array_length (ett));