Added stubs for various RPC routines:
[metze/wireshark/wip.git] / packet-ypxfr.c
1 /* packet-ypxfr.c
2  * Routines for ypxfr dissection
3  *
4  * $Id: packet-ypxfr.c,v 1.1 1999/11/10 17:23:55 nneul Exp $
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@unicom.net>
8  * Copyright 1998 Gerald Combs
9  *
10  * Copied from packet-smb.c
11  *
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.
16  *
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.
21  *
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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31
32 #ifdef HAVE_SYS_TYPES_H
33 #include <sys/types.h>
34 #endif
35
36
37 #include "packet-rpc.h"
38 #include "packet-ypxfr.h"
39
40 static int proto_ypxfr = -1;
41
42 /* proc number, "proc name", dissect_request, dissect_reply */
43 /* NULL as function pointer means: take the generic one. */
44 const vsff ypxfr1_proc[] = {
45         { YPXFRPROC_NULL,       "NULL",         NULL,                           NULL },
46         { YPXFRPROC_GETMAP,     "GETMAP",               NULL,                           NULL },
47         { 0,    NULL,           NULL,                           NULL }
48 };
49 /* end of YPXFR version 1 */
50
51 void
52 proto_register_ypxfr(void)
53 {
54         proto_ypxfr = proto_register_protocol("Yellow Pages Transfer", "ypxfr");
55
56         /* Register the protocol as RPC */
57         rpc_init_prog(proto_ypxfr, YPXFR_PROGRAM, ETT_YPXFR);
58         /* Register the procedure tables */
59         rpc_init_proc_table(YPXFR_PROGRAM, 1, ypxfr1_proc);
60 }
61