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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: securstr.h,v 1.4 2001/02/09 02:03:24 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. /* $XFree86: xc/include/extensions/securstr.h,v 1.2 2001/08/01 00:44:35 tsi Exp $ */
  24. #ifndef _SECURSTR_H
  25. #define _SECURSTR_H
  26. #include <X11/extensions/security.h>
  27. #define SECURITY_EXTENSION_NAME "SECURITY"
  28. #define SECURITY_MAJOR_VERSION 1
  29. #define SECURITY_MINOR_VERSION 0
  30. #define X_SecurityQueryVersion 0
  31. #define X_SecurityGenerateAuthorization 1
  32. #define X_SecurityRevokeAuthorization   2
  33. typedef struct {
  34.     CARD8       reqType;
  35.     CARD8       securityReqType;
  36.     CARD16      length B16;
  37.     CARD16      majorVersion B16;
  38.     CARD16      minorVersion B16;
  39. } xSecurityQueryVersionReq;
  40. #define sz_xSecurityQueryVersionReq  8
  41. typedef struct {
  42.     CARD8   type;
  43.     CARD8   pad0;
  44.     CARD16  sequenceNumber B16;
  45.     CARD32  length  B32;
  46.     CARD16  majorVersion B16;
  47.     CARD16  minorVersion B16;
  48.     CARD32  pad1  B32;
  49.     CARD32  pad2  B32;
  50.     CARD32  pad3  B32;
  51.     CARD32  pad4  B32;
  52.     CARD32  pad5  B32;
  53.  } xSecurityQueryVersionReply;
  54. #define sz_xSecurityQueryVersionReply   32
  55. typedef struct {
  56.     CARD8       reqType;
  57.     CARD8       securityReqType;
  58.     CARD16      length B16;
  59.     CARD16 nbytesAuthProto B16;
  60.     CARD16 nbytesAuthData B16;
  61.     CARD32 valueMask B32; 
  62.     /* auth protocol name padded to 4 bytes */
  63.     /* auth protocol data padded to 4 bytes */
  64.     /* list of CARD32 values, if any */
  65. } xSecurityGenerateAuthorizationReq;
  66. #define sz_xSecurityGenerateAuthorizationReq 12
  67. typedef struct {
  68.     CARD8   type;
  69.     CARD8   pad0;
  70.     CARD16  sequenceNumber B16;
  71.     CARD32  length  B32;
  72.     CARD32  authId  B32;
  73.     CARD16  dataLength   B16;
  74.     CARD16  pad1  B16;
  75.     CARD32  pad2  B32;
  76.     CARD32  pad3  B32;
  77.     CARD32  pad4  B32;
  78.     CARD32  pad5  B32;
  79.  } xSecurityGenerateAuthorizationReply;
  80. #define sz_xSecurityGenerateAuthorizationReply   32
  81. typedef struct {
  82.     CARD8       reqType;
  83.     CARD8       securityReqType;
  84.     CARD16      length B16;
  85.     CARD32 authId B32;
  86. } xSecurityRevokeAuthorizationReq;
  87. #define sz_xSecurityRevokeAuthorizationReq 8
  88. typedef struct _xSecurityAuthorizationRevokedEvent {
  89.     BYTE type;
  90.     BYTE detail;
  91.     CARD16 sequenceNumber B16;
  92.     CARD32 authId B32;
  93.     CARD32 pad0  B32;
  94.     CARD32 pad1  B32;
  95.     CARD32 pad2  B32;
  96.     CARD32 pad3  B32;
  97.     CARD32 pad4  B32;
  98.     CARD32 pad5  B32;
  99. } xSecurityAuthorizationRevokedEvent;
  100. #define sz_xSecurityAuthorizationRevokedEvent 32
  101. #endif /* _SECURSTR_H */