rtperr.h
上传用户:hnnddl
上传日期:2007-01-06
资源大小:3580k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

WINDOWS

  1. /*
  2.  * $Revision: 1.2 $
  3.  * $Date: 1997/11/20 19:24:09 $
  4.  */
  5. ////////////////////////////////////////////////////////////////
  6. //               Copyright (c) 1996,97 Lucent Technologies    //
  7. //                       All Rights Reserved                  //
  8. //                                                            //
  9. //                       THIS IS UNPUBLISHED                  //
  10. //                       PROPRIETARY SOURCE                   //
  11. //                   CODE OF Lucent Technologies              //
  12. // AND elemedia   //
  13. //                                                            //
  14. //           The copyright notice above does not evidence any //
  15. //          actual or intended publication of such source code//
  16. ////////////////////////////////////////////////////////////////
  17. //
  18. #if !defined(__RTPERR_H__)
  19. #include "api/apierr.h"
  20. #define RTP_SUCCESS 0
  21. // Aliases for general error codes
  22. #define RTP_MEM_ALLOC_FAILED PROT_CODE_MEM_ALLOC_FAILED
  23. #define RTP_INVALID_PARAM PROT_CODE_INVALID_PARAM
  24. // RTP specific error codes
  25. #define RTP_UNKNOWN_ERROR PROT_CODE_MAX + 1
  26. #define RTP_SSRC_COLLISION PROT_CODE_MAX + 2
  27. #define RTP_RECEIVED_BYE PROT_CODE_MAX + 3
  28. #define RTP_BAD_PACKET PROT_CODE_MAX + 4
  29. #define RTP_ENDPOINT_IN_PROBATION PROT_CODE_MAX + 5
  30. #define RTP_OUTOFORDER_RTP_PACKET PROT_CODE_MAX + 6
  31. #define RTP_BAD_SEQ_NO PROT_CODE_MAX + 7
  32. #define RTP_ERROR(CODE)
  33. (ProtReturnCode)PROT_ERR(PROT_FACILITY_CODE_RTP,0,(CODE))
  34. #endif //__RTPERR_H__