/* 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 * 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 */