2 * Routines for ypxfr dissection
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <gerald@wireshark.org>
8 * Copyright 1998 Gerald Combs
10 * Copied from packet-smb.c
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
31 #include "packet-rpc.h"
32 #include "packet-ypxfr.h"
34 static int proto_ypxfr
= -1;
35 static int hf_ypxfr_procedure_v1
= -1;
37 static gint ett_ypxfr
= -1;
39 /* proc number, "proc name", dissect_request, dissect_reply */
40 /* NULL as function pointer means: type of arguments is "void". */
41 static const vsff ypxfr1_proc
[] = {
42 { YPXFRPROC_NULL
, "NULL", NULL
, NULL
},
43 { YPXFRPROC_GETMAP
, "GETMAP", NULL
, NULL
},
44 { 0, NULL
, NULL
, NULL
}
46 static const value_string ypxfr1_proc_vals
[] = {
47 { YPXFRPROC_NULL
, "NULL" },
48 { YPXFRPROC_GETMAP
, "GETMAP" },
51 /* end of YPXFR version 1 */
54 proto_register_ypxfr(void)
56 static hf_register_info hf
[] = {
57 { &hf_ypxfr_procedure_v1
, {
58 "V1 Procedure", "ypxfr.procedure_v1", FT_UINT32
, BASE_DEC
,
59 VALS(ypxfr1_proc_vals
), 0, NULL
, HFILL
}}
62 static gint
*ett
[] = {
66 proto_ypxfr
= proto_register_protocol("Yellow Pages Transfer",
68 proto_register_field_array(proto_ypxfr
, hf
, array_length(hf
));
69 proto_register_subtree_array(ett
, array_length(ett
));
73 proto_reg_handoff_ypxfr(void)
75 /* Register the protocol as RPC */
76 rpc_init_prog(proto_ypxfr
, YPXFR_PROGRAM
, ett_ypxfr
);
77 /* Register the procedure tables */
78 rpc_init_proc_table(YPXFR_PROGRAM
, 1, ypxfr1_proc
, hf_ypxfr_procedure_v1
);