aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcom-dispatch.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2006-04-07 22:03:58 +0000
committerUlf Lamping <ulf.lamping@web.de>2006-04-07 22:03:58 +0000
commit69f822f1779020230582c10f490f79206227dbf6 (patch)
tree7a2ccb3df2c5be7109a43f296d63f799ffc96ae9 /epan/dissectors/packet-dcom-dispatch.c
parent9481eac669a24c1f5efad7f65ce080afc45b7c5a (diff)
some of the CBA interfaces are actually derived from IDispatch, dissect the methods accordingly
svn path=/trunk/; revision=17839
Diffstat (limited to 'epan/dissectors/packet-dcom-dispatch.c')
-rw-r--r--epan/dissectors/packet-dcom-dispatch.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/epan/dissectors/packet-dcom-dispatch.c b/epan/dissectors/packet-dcom-dispatch.c
index d35253a903..95a5f9b36e 100644
--- a/epan/dissectors/packet-dcom-dispatch.c
+++ b/epan/dissectors/packet-dcom-dispatch.c
@@ -33,6 +33,7 @@
#include <epan/packet.h>
#include "packet-dcerpc.h"
#include "packet-dcom.h"
+#include "packet-dcom-dispatch.h"
static int hf_dispatch_opnum = -1;
@@ -90,7 +91,7 @@ static int proto_dispatch = -1;
-static int
+int
dissect_IDispatch_GetTypeInfoCount_resp(tvbuff_t *tvb, int offset,
packet_info *pinfo, proto_tree *tree, guint8 *drep)
{
@@ -115,7 +116,7 @@ dissect_IDispatch_GetTypeInfoCount_resp(tvbuff_t *tvb, int offset,
return offset;
}
-static int
+int
dissect_IDispatch_GetTypeInfo_rqst(tvbuff_t *tvb, int offset,
packet_info *pinfo, proto_tree *tree, guint8 *drep)
{
@@ -133,7 +134,7 @@ dissect_IDispatch_GetTypeInfo_rqst(tvbuff_t *tvb, int offset,
}
-static int
+int
dissect_IDispatch_GetTypeInfo_resp(tvbuff_t *tvb, int offset,
packet_info *pinfo, proto_tree *tree, guint8 *drep)
{
@@ -162,7 +163,7 @@ dissect_IDispatch_GetTypeInfo_resp(tvbuff_t *tvb, int offset,
}
-static int
+int
dissect_IDispatch_GetIDsOfNames_rqst(tvbuff_t *tvb, int offset,
packet_info *pinfo, proto_tree *tree, guint8 *drep)
{
@@ -212,7 +213,7 @@ dissect_IDispatch_GetIDsOfNames_rqst(tvbuff_t *tvb, int offset,
-static int
+int
dissect_IDispatch_GetIDsOfNames_resp(tvbuff_t *tvb, int offset,
packet_info *pinfo, proto_tree *tree, guint8 *drep)
{
@@ -250,7 +251,7 @@ dissect_IDispatch_GetIDsOfNames_resp(tvbuff_t *tvb, int offset,
-static int
+int
dissect_IDispatch_Invoke_rqst(tvbuff_t *tvb, int offset,
packet_info *pinfo, proto_tree *tree, guint8 *drep)
{
@@ -412,7 +413,7 @@ dissect_IDispatch_Invoke_rqst(tvbuff_t *tvb, int offset,
return u32VariableOffset;
}
-static int
+int
dissect_IDispatch_Invoke_resp(tvbuff_t *tvb, int offset,
packet_info *pinfo, proto_tree *tree, guint8 *drep)
{