/**************************************************************** **************************************************************** ** ** ** (C)Copyright 2005-2006, American Megatrends Inc. ** ** ** ** All Rights Reserved. ** ** ** ** 6145-F, Northbelt Parkway, Norcross, ** ** ** ** Georgia - 30071, USA. Phone-(770)-246-8600. ** ** ** **************************************************************** **************************************************************** **************************************************************** * * ipmi_rmcp.h * RMCP Packet Handler structures * * Author: Govind Kothandapani * : Bakka Ravinder Reddy * *****************************************************************/ #ifndef IPMI_RMCP_H #define IPMI_RMCP_H #include #include "com_IPMIDefs.h" #pragma pack( 1 ) /*** External Definitions ***/ #define LAN_RMCP_PORT 623 #define AUTH_CODE_LEN 16 #define PAYLOAD_IPMI_MSG 0x00 #define PAYLOAD_SOL 0x01 #define PAYLOAD_OEM 0x02 #define RMCP_PLUS_FORMAT 0x06 #define CONF_AES_CBC_128_HDR_LEN 0x10 #define CONF_BLOCK_SIZE 16 #define MAX_INTEGRITY_LEN 20 #define MAX_HMAC_MD5_INTEGRITY_LEN 16 #define MAX_MD5_INTEGRITY_LEN 16 #define MAX_RANDOM_LEN 10 /** * @struct RMCPHdr_T * @brief RMCP Header **/ typedef struct { uint8_t Version; uint8_t Reserved; uint8_t SeqNumber; uint8_t MsgClass; } RMCPHdr_T; /** * @struct SessionHdr_T * @brief IPMI Session header **/ typedef struct { uint8_t AuthType; uint32_t SessionSeqNum; uint32_t SessionID; } SessionHdr_T; /** * @struct SessionHdr2_T * @brief IPMI Session Header **/ typedef struct { uint8_t AuthType; uint8_t PayloadType; uint32_t SessionID; uint32_t SessionSeqNum; uint16_t IPMIMsgLen; } SessionHdr2_T; /** * @struct RMCPPingHdr_T * @brief RMCP Ping Message Header **/ typedef struct { uint8_t IANANum[4]; uint8_t MsgType; uint8_t MsgTag; uint8_t Reserved; uint8_t DataLen; } RMCPPingHdr_T; #pragma pack( ) #endif /* IPMI_RMCP_H */