blob: f459b9468b4180ff8700f770c7899cf828b09021 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
/* packet-dcerpc-dcom.h
*
* $Id: packet-dcerpc-dcom.h,v 1.1 2003/09/24 08:05:50 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
* Copyright 1998 Gerald Combs
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef __PACKET_DCERPC_DCOM_H__
#define __PACKET_DCERPC_DCOM_H__
typedef struct tagCOMVERSION
{
guint16 MajorVersion;
guint16 MinorVersion;
} COMVERSION;
typedef struct tagORPC_EXTENT
{
e_uuid_t id;
guint32 size;
/* guint8 data[]; */
} ORPC_EXTENT;
typedef struct tagORPC_EXTENT_ARRAY
{
guint32 size;
guint32 reserved;
ORPC_EXTENT **extent;
} ORPC_EXTENT_ARRAY;
typedef struct tagORPCTHIS {
COMVERSION version;
guint32 flags;
guint32 reserved1;
e_uuid_t cid;
ORPC_EXTENT_ARRAY *extensions;
} ORPCTHIS;
typedef struct tagMInterfacePointer {
guint32 ulCntData;
/* guint8 abData[]; */
} MInterfacePointer, *PMInterfacePointer;
typedef struct tagORPCTHAT {
guint32 flags;
ORPC_EXTENT_ARRAY *extensions;
} ORPCTHAT;
typedef struct tagSTRINGBINDING {
unsigned short wTowerId; // Cannot be zero.
unsigned short aNetworkAddr; // Zero terminated.
} STRINGBINDING;
typedef struct tagSECURITYBINDING {
unsigned short wAuthnSvc; // Cannot be zero.
unsigned short wAuthzSvc; // Must not be zero.
unsigned short aPrincName; // Zero terminated.
} SECURITYBINDING;
typedef struct tagDUALSTRINGARRAY {
unsigned short wNumEntries; // Number of entries in array.
unsigned short wSecurityOffset; // Offset of security info.
/* [size_is(wNumEntries)] unsigned short aStringArray[]; */
} DUALSTRINGARRAY;
#endif /* packet-dcerpc-dcom.h */
|