diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-10-23 03:49:13 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-10-23 03:49:13 +0000 |
commit | a71d1d910e21a9dbec9caef3d404b1626ee5ad0c (patch) | |
tree | 9988bb31bedf5fe12f8168ae54c0da9f8c908f31 /packet-dcerpc.h | |
parent | c65515848941a8a4e42a4f48b13bdd78312e5985 (diff) | |
download | wireshark-a71d1d910e21a9dbec9caef3d404b1626ee5ad0c.tar.gz wireshark-a71d1d910e21a9dbec9caef3d404b1626ee5ad0c.tar.bz2 wireshark-a71d1d910e21a9dbec9caef3d404b1626ee5ad0c.zip |
From Ronnie Sahlberg: add a tap for statistics for DCERPC interfaces.
svn path=/trunk/; revision=6479
Diffstat (limited to 'packet-dcerpc.h')
-rw-r--r-- | packet-dcerpc.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/packet-dcerpc.h b/packet-dcerpc.h index feae1d7aff..04ab146ec2 100644 --- a/packet-dcerpc.h +++ b/packet-dcerpc.h @@ -1,7 +1,7 @@ /* packet-dcerpc.h * Copyright 2001, Todd Sabin <tas@webspan.net> * - * $Id: packet-dcerpc.h,v 1.22 2002/10/22 00:59:25 guy Exp $ + * $Id: packet-dcerpc.h,v 1.23 2002/10/23 03:49:10 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -124,8 +124,6 @@ int dissect_dcerpc_double (tvbuff_t *tvb, gint offset, packet_info *pinfo, int dissect_dcerpc_time_t (tvbuff_t *tvb, gint offset, packet_info *pinfo, proto_tree *tree, char *drep, int hfindex, guint32 *pdata); - - /* * NDR routines for subdissectors. */ @@ -189,6 +187,9 @@ typedef struct _dcerpc_sub_dissector { /* registration function for subdissectors */ void dcerpc_init_uuid (int proto, int ett, e_uuid_t *uuid, guint16 ver, dcerpc_sub_dissector *procs, int opnum_hf); +char *dcerpc_get_proto_name(e_uuid_t *uuid, guint16 ver); +dcerpc_sub_dissector *dcerpc_get_proto_sub_dissector(e_uuid_t *uuid, guint16 ver); + /* Private data structure to pass to DCERPC dissector. This is used to pass transport specific information down to the dissector from the |