Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.9 KiB

  1. /***********************************************************************
  2. * INTEL Corporation Proprietary Information *
  3. * *
  4. * This listing is supplied under the terms of a license agreement *
  5. * with INTEL Corporation and may not be copied nor disclosed except *
  6. * in accordance with the terms of that agreement. *
  7. * *
  8. * Copyright (c) 1996 Intel Corporation. All rights reserved. *
  9. ***********************************************************************/
  10. //////////////////////////////////////////////////////////////////////////////
  11. //////////////////////////////////////////////////////////////////////////////
  12. //
  13. // Copyright (c) 1994: Intel Corporation
  14. // Confidential -- All proprietary rights reserved.
  15. //
  16. // AUTHOR Steve Nesland, Sam Sakthivel
  17. //
  18. // DESCRIPTION
  19. // This file contains protocol logging definitions needed by MBFT and
  20. // the MBFT PDU logging class.
  21. //
  22. //////////////////////////////////////////////////////////////////////////////
  23. //////////////////////////////////////////////////////////////////////////////
  24. // This define identifies the MBFT protocol as the one to be logged. In the
  25. // MBFT code, it is used only in the CPLInitialize() call.
  26. // For example: MBFTProtocolLogger = CPLInitialize( MBFT_PROTOCOL );
  27. //
  28. #define RASLOG_PROTOCOL "RAS_PDU"
  29. // PDU encoding type flags and PDU type flags. These flags are passed from
  30. // MBFT to the logging via user data. Bit zero of the user data represents
  31. // the ASN encoding type. Bit 1 represents pdu type (Connect or Domain).
  32. // Bit 2 represents whether the PDU was sent or received.
  33. //
  34. #define RASLOG_SENT_PDU 1UL
  35. #define RASLOG_RECEIVED_PDU 0UL