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.

36 lines
1.7 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. // AUTHOR Stacy Bell
  14. //
  15. // DESCRIPTION
  16. // This file contains protocol logging definitions needed by H245 and
  17. // the H245 PDU logging class.
  18. //
  19. //////////////////////////////////////////////////////////////////////////////
  20. //////////////////////////////////////////////////////////////////////////////
  21. // This define identifies the H245 protocol as the one to be logged. In the
  22. // H245 code, it is used only in the InteropLoad() call.
  23. // For example: H245Logger = InteropLoad( H245LOG_PROTOCOL );
  24. //
  25. #define H245LOG_PROTOCOL "H245_PDU"
  26. // PDU encoding type flags and PDU type flags. These flags are passed from
  27. // H245 to the logging via user data. Bit 1 represents whether the PDU
  28. // was sent or received.
  29. //
  30. #define H245LOG_SENT_PDU 1UL
  31. #define H245LOG_RECEIVED_PDU 0UL