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.

32 lines
1.2 KiB

  1. //////////////////////////////////////////////////////////////////////////////
  2. //////////////////////////////////////////////////////////////////////////////
  3. //
  4. // Copyright (c) 1996: Intel Corporation
  5. // Confidential -- All proprietary rights reserved.
  6. //
  7. // AUTHOR Stacy Bell
  8. //
  9. // DESCRIPTION
  10. // This file contains protocol logging definitions needed by RRCM
  11. // and the RTP PDU logging class.
  12. //
  13. //////////////////////////////////////////////////////////////////////////////
  14. //////////////////////////////////////////////////////////////////////////////
  15. // This define identifies the RTP and RTCP protocols as the ones to be logged.
  16. // In the RRCM code, it is used only in the CPLInitialize() call.
  17. // For example: RTPProtocolLogger = CPLInitialize( RTPLOG_PROTOCOL );
  18. //
  19. #define RTPLOG_PROTOCOL "RTP_PDU"
  20. // PDU encoding type flags and PDU type flags. These flags are passed from
  21. // RRCM to the logging via user data. Bit zero of the user data represents
  22. // the Protocol type. Bit 1 represents whether the PDU was sent or received.
  23. //
  24. #define RTCP_PDU 1UL
  25. #define RTP_PDU 0UL
  26. #define RTPLOG_SENT_PDU 2UL
  27. #define RTPLOG_RECEIVED_PDU 0UL