diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-10-23 21:17:03 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-10-23 21:17:03 +0000 |
commit | d5f34ad8b2c85b08bfdadc3c021c0f24b34cdfbc (patch) | |
tree | c89f8870831ade2133bd93de09ca10833fa33f5d /packet-nlm.c | |
parent | 6cfdb3c0ed0f3879f238608aed5773ae367d8719 (diff) | |
download | wireshark-d5f34ad8b2c85b08bfdadc3c021c0f24b34cdfbc.tar.gz wireshark-d5f34ad8b2c85b08bfdadc3c021c0f24b34cdfbc.tar.bz2 wireshark-d5f34ad8b2c85b08bfdadc3c021c0f24b34cdfbc.zip |
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".
svn path=/trunk/; revision=6486
Diffstat (limited to 'packet-nlm.c')
-rw-r--r-- | packet-nlm.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packet-nlm.c b/packet-nlm.c index 5cc8fadbaf..6201aa0c3c 100644 --- a/packet-nlm.c +++ b/packet-nlm.c @@ -1,7 +1,7 @@ /* packet-nlm.c * Routines for nlm dissection * - * $Id: packet-nlm.c,v 1.29 2002/08/28 21:00:24 jmayer Exp $ + * $Id: packet-nlm.c,v 1.30 2002/10/23 21:17:02 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -1132,8 +1132,8 @@ proto_reg_handoff_nlm(void) /* Register the protocol as RPC */ rpc_init_prog(proto_nlm, NLM_PROGRAM, ett_nlm); /* Register the procedure tables */ - rpc_init_proc_table(NLM_PROGRAM, 1, nlm1_proc); - rpc_init_proc_table(NLM_PROGRAM, 2, nlm2_proc); - rpc_init_proc_table(NLM_PROGRAM, 3, nlm3_proc); - rpc_init_proc_table(NLM_PROGRAM, 4, nlm4_proc); + rpc_init_proc_table(NLM_PROGRAM, 1, nlm1_proc, -1); + rpc_init_proc_table(NLM_PROGRAM, 2, nlm2_proc, -1); + rpc_init_proc_table(NLM_PROGRAM, 3, nlm3_proc, -1); + rpc_init_proc_table(NLM_PROGRAM, 4, nlm4_proc, -1); } |