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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: PM.h,v 1.4 2001/02/09 02:05:34 xorgcvs Exp $ */
  2. /*
  3. Copyright 1996, 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
  10. in all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  12. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  13. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  14. IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
  15. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  16. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  17. OTHER DEALINGS IN THE SOFTWARE.
  18. Except as contained in this notice, the name of The Open Group shall
  19. not be used in advertising or otherwise to promote the sale, use or
  20. other dealings in this Software without prior written authorization
  21. from The Open Group.
  22. */
  23. /* Proxy Management Protocol */
  24. #ifndef _PM_H_
  25. #define _PM_H_
  26. #define PM_PROTOCOL_NAME "PROXY_MANAGEMENT"
  27. #define PM_MAJOR_VERSION 1
  28. #define PM_MINOR_VERSION 0
  29. /*
  30.  * PM minor opcodes
  31.  */
  32. #define PM_Error ICE_Error /* == 0 */
  33. #define PM_GetProxyAddr 1
  34. #define PM_GetProxyAddrReply 2
  35. #define PM_StartProxy 3
  36. /*
  37.  * status return codes for GetProxyAddrReply
  38.  */
  39. #define    PM_Unable 0
  40. #define    PM_Success 1
  41. #define            PM_Failure 2
  42. #endif /* _PM_H_ */