aboutsummaryrefslogtreecommitdiffstats
path: root/packet-mount.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-10-23 21:17:03 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-10-23 21:17:03 +0000
commit7bfeb66c5938fb20eaca3ee1f1a0316ddd0252e8 (patch)
treec89f8870831ade2133bd93de09ca10833fa33f5d /packet-mount.c
parent706a463690ea61bf587034924fd86beba43d136e (diff)
Add an extra argument to "rpc_init_proc_table()" that can specify an hf_
value for a field to be used for the procedure number for that version of the protocol; use that field, if specified, instead of just putting in a generic "rpc.procedure" field. Have the ypserv dissector register those fields and supply them to "rpc_init_proc_table()". Supply -1 for other RPC programs (for now), meaning "no such field exists". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6486 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-mount.c')
-rw-r--r--packet-mount.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-mount.c b/packet-mount.c
index 592aeae7e2..2049ac8bbf 100644
--- a/packet-mount.c
+++ b/packet-mount.c
@@ -1,7 +1,7 @@
/* packet-mount.c
* Routines for mount dissection
*
- * $Id: packet-mount.c,v 1.33 2002/08/28 21:00:22 jmayer Exp $
+ * $Id: packet-mount.c,v 1.34 2002/10/23 21:17:02 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -732,7 +732,7 @@ proto_reg_handoff_mount(void)
/* Register the protocol as RPC */
rpc_init_prog(proto_mount, MOUNT_PROGRAM, ett_mount);
/* Register the procedure tables */
- rpc_init_proc_table(MOUNT_PROGRAM, 1, mount1_proc);
- rpc_init_proc_table(MOUNT_PROGRAM, 2, mount2_proc);
- rpc_init_proc_table(MOUNT_PROGRAM, 3, mount3_proc);
+ rpc_init_proc_table(MOUNT_PROGRAM, 1, mount1_proc, -1);
+ rpc_init_proc_table(MOUNT_PROGRAM, 2, mount2_proc, -1);
+ rpc_init_proc_table(MOUNT_PROGRAM, 3, mount3_proc, -1);
}