Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-dcom-dispatch.h
1/* packet-dcom-dispatch.h
2 * Routines for DCOM IDispatch
3 *
4 * Wireshark - Network traffic analyzer
5 * By Gerald Combs <[email protected]>
6 * Copyright 1998 Gerald Combs
7 *
8 * SPDX-License-Identifier: GPL-2.0-or-later
9 */
10
11/* see packet-dcom.c for details about DCOM */
12
13#ifndef __PACKET_DCERPC_DCOM_DISPATCH_H
14#define __PACKET_DCERPC_DCOM_DISPATCH_H
15
16#include <epan/dissectors/packet-dcerpc.h>
17
18WS_DLL_PUBLIC unsigned
19dissect_IDispatch_GetTypeInfoCount_resp(tvbuff_t *tvb, unsigned offset,
20 packet_info *pinfo, proto_tree *tree, dcerpc_info *di, uint8_t *drep);
21
22WS_DLL_PUBLIC unsigned
23dissect_IDispatch_GetTypeInfo_rqst(tvbuff_t *tvb, unsigned offset,
24 packet_info *pinfo, proto_tree *tree, dcerpc_info *di, uint8_t *drep);
25
26WS_DLL_PUBLIC unsigned
27dissect_IDispatch_GetTypeInfo_resp(tvbuff_t *tvb, unsigned offset,
28 packet_info *pinfo, proto_tree *tree, dcerpc_info *di, uint8_t *drep);
29
30WS_DLL_PUBLIC unsigned
31dissect_IDispatch_GetIDsOfNames_rqst(tvbuff_t *tvb, unsigned offset,
32 packet_info *pinfo, proto_tree *tree, dcerpc_info *di, uint8_t *drep);
33
34WS_DLL_PUBLIC unsigned
35dissect_IDispatch_GetIDsOfNames_resp(tvbuff_t *tvb, unsigned offset,
36 packet_info *pinfo, proto_tree *tree, dcerpc_info *di, uint8_t *drep);
37
38WS_DLL_PUBLIC unsigned
39dissect_IDispatch_Invoke_rqst(tvbuff_t *tvb, unsigned offset,
40 packet_info *pinfo, proto_tree *tree, dcerpc_info *di, uint8_t *drep);
41
42WS_DLL_PUBLIC unsigned
43dissect_IDispatch_Invoke_resp(tvbuff_t *tvb, unsigned offset,
44 packet_info *pinfo, proto_tree *tree, dcerpc_info *di, uint8_t *drep);
45
46#endif /* __PACKET_DCERPC_DCOM_DISPATCH_H */
Definition packet-dcerpc.h:154
Definition packet_info.h:43
Definition proto.h:907
Definition tvbuff-int.h:36