aboutsummaryrefslogtreecommitdiffstats
path: root/packet-rpc.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-08-21 21:05:08 +0000
committerGuy Harris <guy@alum.mit.edu>2002-08-21 21:05:08 +0000
commit5d4d48242a10a42dd242e7fa82cded1904e5871d (patch)
tree1104171f7ee6775fd99351994046fdbc3688bf50 /packet-rpc.c
parente08c37f7ee06c9716cee74e4a8c0f359c9195b94 (diff)
Note that, as we now have a GSS-API token dissector, we should perhaps
call that for GSS-API tokens in ONC RPC calls. svn path=/trunk/; revision=6050
Diffstat (limited to 'packet-rpc.c')
-rw-r--r--packet-rpc.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/packet-rpc.c b/packet-rpc.c
index 8431d02dc4..2c3e8389be 100644
--- a/packet-rpc.c
+++ b/packet-rpc.c
@@ -2,7 +2,7 @@
* Routines for rpc dissection
* Copyright 1999, Uwe Girlich <Uwe.Girlich@philosys.de>
*
- * $Id: packet-rpc.c,v 1.98 2002/08/02 23:35:57 jmayer Exp $
+ * $Id: packet-rpc.c,v 1.99 2002/08/21 21:05:08 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1005,6 +1005,12 @@ dissect_rpc_verf(tvbuff_t* tvb, proto_tree* tree, int offset, int msg_type)
static int
dissect_rpc_authgss_initarg(tvbuff_t* tvb, proto_tree* tree, int offset)
{
+ /*
+ * XXX - should this use the GSS-API token dissector?
+ * We'd have to extract the length ourselves, construct
+ * a tvbuff containing the body of the opaque data,
+ * and then hand that to the GSS-API token dissector.
+ */
offset = dissect_rpc_data(tvb, tree, hf_rpc_authgss_token,
offset);
return offset;