SOLConfig.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /****************************************************************
  2. ****************************************************************
  3. ** **
  4. ** (C)Copyright 2005-2006, American Megatrends Inc. **
  5. ** **
  6. ** All Rights Reserved. **
  7. ** **
  8. ** 6145-F, Northbelt Parkway, Norcross, **
  9. ** **
  10. ** Georgia - 30071, USA. Phone-(770)-246-8600. **
  11. ** **
  12. ****************************************************************
  13. ****************************************************************/
  14. /****************************************************************
  15. *
  16. * SOLCmds.c
  17. * Serial Over Lan commands.
  18. *
  19. * Author: Govindarajan <govindarajann@amiindia.co.in>
  20. * Vinoth Kumar <vinothkumars@amiindia.co.in>
  21. ****************************************************************/
  22. #ifndef SOL_H
  23. #define SOL_H
  24. #include "Types.h"
  25. /**
  26. * @defgroup sol SOL Command handlers
  27. * @ingroup devcfg
  28. * IPMI Serial Over LAN interface command handlers.
  29. * Commands are used for activating/deactivating SOL payload and
  30. * retrieving/setting various SOL parameters.
  31. * @{
  32. **/
  33. extern int SOLActivating (_NEAR_ INT8U* pReq, INT8U ReqLen, _NEAR_ INT8U* pRes,_NEAR_ int BMCInst);
  34. extern int SetSOLConfig (_NEAR_ INT8U* pReq, INT8U ReqLen, _NEAR_ INT8U* pRes,_NEAR_ int BMCInst);
  35. extern int GetSOLConfig (_NEAR_ INT8U* pReq, INT8U ReqLen, _NEAR_ INT8U* pRes,_NEAR_ int BMCInst);
  36. /** @} */
  37. #endif /* SOL_H */