ICE.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: ICE.h,v 1.4 2001/02/09 02:03:26 xorgcvs Exp $ */
  2. /******************************************************************************
  3. Copyright 1993, 1998  The Open Group
  4. Permission to use, copy, modify, distribute, and sell this software and its
  5. documentation for any purpose is hereby granted without fee, provided that
  6. the above copyright notice appear in all copies and that both that
  7. copyright notice and this permission notice appear in supporting
  8. documentation.
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  14. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  15. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  16. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  17. Except as contained in this notice, the name of The Open Group shall not be
  18. used in advertising or otherwise to promote the sale, use or other dealings
  19. in this Software without prior written authorization from The Open Group.
  20. Author: Ralph Mor, X Consortium
  21. ******************************************************************************/
  22. #ifndef _ICE_H_
  23. #define _ICE_H_
  24. /*
  25.  * Protocol Version
  26.  */
  27. #define IceProtoMajor 1
  28. #define IceProtoMinor 0
  29. /*
  30.  * Byte Order
  31.  */
  32. #define IceLSBfirst 0
  33. #define IceMSBfirst 1
  34. /*
  35.  * ICE minor opcodes
  36.  */
  37. #define ICE_Error  0
  38. #define ICE_ByteOrder 1
  39. #define ICE_ConnectionSetup 2
  40. #define ICE_AuthRequired 3
  41. #define ICE_AuthReply  4
  42. #define ICE_AuthNextPhase 5
  43. #define ICE_ConnectionReply 6
  44. #define ICE_ProtocolSetup 7
  45. #define ICE_ProtocolReply 8
  46. #define ICE_Ping 9
  47. #define ICE_PingReply 10
  48. #define ICE_WantToClose 11
  49. #define ICE_NoClose 12
  50. /*
  51.  * Error severity
  52.  */
  53. #define IceCanContinue 0
  54. #define IceFatalToProtocol 1
  55. #define IceFatalToConnection 2
  56. /*
  57.  * ICE error classes that are common to all protocols
  58.  */
  59. #define IceBadMinor 0x8000
  60. #define IceBadState 0x8001
  61. #define IceBadLength 0x8002
  62. #define IceBadValue 0x8003
  63. /*
  64.  * ICE error classes that are specific to the ICE protocol
  65.  */
  66. #define IceBadMajor 0
  67. #define IceNoAuth 1
  68. #define IceNoVersion 2
  69. #define IceSetupFailed 3
  70. #define IceAuthRejected 4
  71. #define IceAuthFailed 5
  72. #define IceProtocolDuplicate 6
  73. #define IceMajorOpcodeDuplicate 7
  74. #define IceUnknownProtocol 8
  75. #endif /* _ICE_H_ */