aboutsummaryrefslogtreecommitdiffstats
path: root/packet-bootparams.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-bootparams.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-bootparams.c')
-rw-r--r--packet-bootparams.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-bootparams.c b/packet-bootparams.c
index 9165395ae1..6dc983cffd 100644
--- a/packet-bootparams.c
+++ b/packet-bootparams.c
@@ -1,7 +1,7 @@
/* packet-bootparams.c
* Routines for bootparams dissection
*
- * $Id: packet-bootparams.c,v 1.22 2002/08/28 21:00:08 jmayer Exp $
+ * $Id: packet-bootparams.c,v 1.23 2002/10/23 21:17:01 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -187,5 +187,5 @@ proto_reg_handoff_bootparams(void)
/* Register the protocol as RPC */
rpc_init_prog(proto_bootparams, BOOTPARAMS_PROGRAM, ett_bootparams);
/* Register the procedure tables */
- rpc_init_proc_table(BOOTPARAMS_PROGRAM, 1, bootparams1_proc);
+ rpc_init_proc_table(BOOTPARAMS_PROGRAM, 1, bootparams1_proc, -1);
}