aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ypbind.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-ypbind.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-ypbind.c')
-rw-r--r--packet-ypbind.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-ypbind.c b/packet-ypbind.c
index cd69505ed6..f815d5bba1 100644
--- a/packet-ypbind.c
+++ b/packet-ypbind.c
@@ -1,7 +1,7 @@
/* packet-ypbind.c
* Routines for ypbind dissection
*
- * $Id: packet-ypbind.c,v 1.13 2002/08/28 21:00:40 jmayer Exp $
+ * $Id: packet-ypbind.c,v 1.14 2002/10/23 21:17:03 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -197,6 +197,6 @@ proto_reg_handoff_ypbind(void)
/* Register the protocol as RPC */
rpc_init_prog(proto_ypbind, YPBIND_PROGRAM, ett_ypbind);
/* Register the procedure tables */
- rpc_init_proc_table(YPBIND_PROGRAM, 1, ypbind1_proc);
- rpc_init_proc_table(YPBIND_PROGRAM, 2, ypbind2_proc);
+ rpc_init_proc_table(YPBIND_PROGRAM, 1, ypbind1_proc, -1);
+ rpc_init_proc_table(YPBIND_PROGRAM, 2, ypbind2_proc, -1);
}