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.

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