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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: PMproto.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 _PMPROTO_H_
  25. #define _PMPROTO_H_
  26. typedef struct {
  27.     CARD8 majorOpcode;
  28.     CARD8 minorOpcode; /* == 1 */
  29.     CARD16 authLen B16;
  30.     CARD32 length B32;
  31.     /* STRING    proxy-service */
  32.     /* STRING    server-address */
  33.     /* STRING    host-address */
  34.     /* STRING    start-options */
  35.     /* STRING    auth-name (if authLen > 0) */
  36.     /* LISTofCARD8 auth-data (if authLen > 0) */
  37. } pmGetProxyAddrMsg;
  38. #define sz_pmGetProxyAddrMsg 8
  39. typedef struct {
  40.     CARD8 majorOpcode;
  41.     CARD8 minorOpcode; /* == 2 */
  42.     CARD8 status;
  43.     CARD8 unused;
  44.     CARD32 length B32;
  45.     /* STRING proxy-address */
  46.     /* STRING failure-reason */
  47. } pmGetProxyAddrReplyMsg;
  48. #define sz_pmGetProxyAddrReplyMsg 8
  49. typedef struct {
  50.     CARD8 majorOpcode;
  51.     CARD8 minorOpcode; /* == 3 */
  52.     CARD16 unused B16;
  53.     CARD32 length B32;
  54.     /* STRING   proxy-service */
  55. } pmStartProxyMsg;
  56. #define sz_pmStartProxyMsg 8
  57. #endif /* _PMPROTO_H_ */