Remove some unused hf entries.
[obnox/wireshark/wip.git] / plugins / docsis / packet-bpkmreq.c
1 /* packet-bpkmreq.c
2  * Routines for Baseline Privacy Key Management Request dissection
3  * Copyright 2002, Anand V. Narwani <anand[AT]narwani.org>
4  *
5  * $Id$
6  *
7  * Wireshark - Network traffic analyzer
8  * By Gerald Combs <gerald@wireshark.org>
9  * Copyright 1998 Gerald Combs
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24  */
25
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #include <epan/packet.h>
31
32 /* Initialize the protocol and registered fields */
33 static int proto_docsis_bpkmreq = -1;
34 static int hf_docsis_bpkmreq_code = -1;
35 static int hf_docsis_bpkmreq_length = -1;
36 static int hf_docsis_bpkmreq_ident = -1;
37
38 static const value_string code_field_vals[] = {
39   {0, "Reserved"},
40   {1, "Reserved"},
41   {2, "Reserved"},
42   {3, "Reserved"},
43   {4, "Auth Request"},
44   {5, "Auth Reply"},
45   {6, "Auth Reject"},
46   {7, "Key Request"},
47   {8, "Key Reply"},
48   {9, "Key Reject"},
49   {10, "Auth Invalid"},
50   {11, "TEK Invalid"},
51   {12, "Authent Info"},
52   {13, "Map Request"},
53   {14, "Map Reply"},
54   {15, "Map Reject"},
55   {0, NULL},
56 };
57
58
59 /* Initialize the subtree pointers */
60 static gint ett_docsis_bpkmreq = -1;
61
62 static dissector_handle_t attrs_handle;
63
64 /* Code to actually dissect the packets */
65 static void
66 dissect_bpkmreq (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree)
67 {
68
69   proto_item *it;
70   proto_tree *bpkmreq_tree;
71   guint8 code;
72   tvbuff_t *attrs_tvb;
73
74   code = tvb_get_guint8 (tvb, 0);
75
76   col_add_fstr (pinfo->cinfo, COL_INFO, "BPKM Request (%s)",
77             val_to_str (code, code_field_vals, "%d"));
78
79   if (tree)
80     {
81       it =
82         proto_tree_add_protocol_format (tree, proto_docsis_bpkmreq, tvb, 0, -1,
83                                         "BPKM Request Message");
84       bpkmreq_tree = proto_item_add_subtree (it, ett_docsis_bpkmreq);
85       proto_tree_add_item (bpkmreq_tree, hf_docsis_bpkmreq_code, tvb, 0, 1,
86                            FALSE);
87       proto_tree_add_item (bpkmreq_tree, hf_docsis_bpkmreq_ident, tvb, 1, 1,
88                            FALSE);
89       proto_tree_add_item (bpkmreq_tree, hf_docsis_bpkmreq_length, tvb, 2, 2,
90                            FALSE);
91     }
92
93   /* Code to Call subdissector */
94   attrs_tvb = tvb_new_subset_remaining (tvb, 4);
95   call_dissector (attrs_handle, attrs_tvb, pinfo, tree);
96
97
98
99 }
100
101
102
103
104 /* Register the protocol with Wireshark */
105
106 /* this format is require because a script is used to build the C function
107    that calls all the protocol registration.
108 */
109
110
111 void
112 proto_register_docsis_bpkmreq (void)
113 {
114
115 /* Setup list of header fields  See Section 1.6.1 for details*/
116   static hf_register_info hf[] = {
117     {&hf_docsis_bpkmreq_code,
118      {"BPKM Code", "docsis_bpkmreq.code",
119       FT_UINT8, BASE_DEC, VALS (code_field_vals), 0x0,
120       "BPKM Request Message", HFILL}
121      },
122     {&hf_docsis_bpkmreq_ident,
123      {"BPKM Identifier", "docsis_bpkmreq.ident",
124       FT_UINT8, BASE_DEC, NULL, 0x0,
125       NULL, HFILL}
126      },
127     {&hf_docsis_bpkmreq_length,
128      {"BPKM Length", "docsis_bpkmreq.length",
129       FT_UINT16, BASE_DEC, NULL, 0x0,
130       NULL, HFILL}
131      },
132   };
133
134 /* Setup protocol subtree array */
135   static gint *ett[] = {
136     &ett_docsis_bpkmreq,
137   };
138
139 /* Register the protocol name and description */
140   proto_docsis_bpkmreq =
141     proto_register_protocol ("DOCSIS Baseline Privacy Key Management Request",
142                              "DOCSIS BPKM-REQ", "docsis_bpkmreq");
143
144 /* Required function calls to register the header fields and subtrees used */
145   proto_register_field_array (proto_docsis_bpkmreq, hf, array_length (hf));
146   proto_register_subtree_array (ett, array_length (ett));
147
148   register_dissector ("docsis_bpkmreq", dissect_bpkmreq,
149                       proto_docsis_bpkmreq);
150 }
151
152
153 /* If this dissector uses sub-dissector registration add a registration routine.
154    This format is required because a script is used to find these routines and
155    create the code that calls these routines.
156 */
157 void
158 proto_reg_handoff_docsis_bpkmreq (void)
159 {
160   dissector_handle_t docsis_bpkmreq_handle;
161
162   docsis_bpkmreq_handle = find_dissector ("docsis_bpkmreq");
163   attrs_handle = find_dissector ("docsis_bpkmattr");
164   dissector_add ("docsis_mgmt", 0x0C, docsis_bpkmreq_handle);
165
166 }