123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- #ifndef RMCP_H
- #define RMCP_H
- #include "com_BmcType.h"
- #include "com_IPMI_RMCP.h"
- #include "com_IPMIDefs.h"
- #define AUTH_NONE 0
- #define AUTH_HMAC_SHA1_96 1
- #define AUTH_HMAC_MD5_128 2
- #define AUTH_MD5_128 3
- #define AUTH_HMAC_SHA256_128 4
- #define CONF_AES_CBC_128 1
- #define CONF_xCR4_128 2
- #define CONF_xCR4_40 3
- #define EVENT_LOGIN 0x9
- #define EVENT_LOGOUT 0xA
- #define EVENT_AUTO_LOGOUT 0xB
- #define EVENT_LOGIN_FAILURE 0xE
- #define NULL_USER 1
- #endif
|