dcom: remove unused header

Change-Id: I3edb887d8561cce206d64899eb62ec209e5a6546
Reviewed-on: https://code.wireshark.org/review/32045
Reviewed-by: Peter Wu <peter@lekensteyn.nl>
Petri-Dish: Peter Wu <peter@lekensteyn.nl>
Tested-by: Petri Dish Buildbot
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
Jiajun Wang 2019-02-16 02:00:10 +08:00 committed by Michael Mann
parent 2172fe93e1
commit 1dc700dc12
3 changed files with 3 additions and 72 deletions

View File

@ -299,7 +299,6 @@ set(DISSECTOR_PUBLIC_HEADERS
packet-dcerpc-budb.h
packet-dcerpc-butc.h
packet-dcerpc-dce122.h
packet-dcerpc-dcom.h
packet-dcerpc-dnsserver.h
packet-dcerpc-frsapi.h
packet-dcerpc-frsrpc.h

View File

@ -1,68 +0,0 @@
/* packet-dcerpc-dcom.h
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __PACKET_DCERPC_DCOM_H__
#define __PACKET_DCERPC_DCOM_H__
typedef struct tagCOMVERSION
{
guint16 MajorVersion;
guint16 MinorVersion;
} COMVERSION;
typedef struct tagORPC_EXTENT
{
e_guid_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_guid_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 */

View File

@ -8,8 +8,8 @@
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __PACKET_DCERPC_DCOM_H
#define __PACKET_DCERPC_DCOM_H
#ifndef __PACKET_DCOM_H
#define __PACKET_DCOM_H
#include "ws_symbol_export.h"
@ -217,4 +217,4 @@ WS_DLL_PUBLIC int
dissect_dcom_simple_resp(tvbuff_t *tvb, int offset,
packet_info *pinfo, proto_tree *tree, dcerpc_info *di, guint8 *drep);
#endif /* packet-dcerpc-dcom.h */
#endif /* packet-dcom.h */