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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: security.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/security.h,v 1.3 2001/12/14 19:53:29 dawes Exp $ */
  24. #ifndef _SECURITY_H
  25. #define _SECURITY_H
  26. #define _XAUTH_STRUCT_ONLY
  27. #include <X11/Xauth.h>
  28. /* constants that server, library, and application all need */
  29. #define XSecurityNumberEvents 1
  30. #define XSecurityNumberErrors 2
  31. #define XSecurityBadAuthorization 0
  32. #define XSecurityBadAuthorizationProtocol 1
  33. /* trust levels */
  34. #define XSecurityClientTrusted 0
  35. #define XSecurityClientUntrusted 1
  36. /* authorization attribute masks */
  37. #define XSecurityTimeout (1<<0)
  38. #define XSecurityTrustLevel (1<<1)
  39. #define XSecurityGroup   (1<<2)
  40. #define XSecurityEventMask (1<<3)
  41. #define XSecurityAllAuthorizationAttributes 
  42.  (XSecurityTimeout | XSecurityTrustLevel | XSecurityGroup | XSecurityEventMask)
  43. /* event masks */
  44. #define XSecurityAuthorizationRevokedMask (1<<0)
  45. #define XSecurityAllEventMasks XSecurityAuthorizationRevokedMask
  46. /* event offsets */
  47. #define XSecurityAuthorizationRevoked 0
  48.     
  49. #define XSecurityAuthorizationName "XC-QUERY-SECURITY-1"
  50. #define XSecurityAuthorizationNameLen 19
  51. #ifndef _SECURITY_SERVER
  52. _XFUNCPROTOBEGIN
  53. Status XSecurityQueryExtension (
  54.     Display *dpy,
  55.     int *major_version_return,
  56.     int *minor_version_return);
  57. Xauth *XSecurityAllocXauth(void);
  58. void XSecurityFreeXauth(Xauth *auth);
  59. /* type for returned auth ids */
  60. typedef unsigned long XSecurityAuthorization;
  61. typedef struct {
  62.     unsigned int timeout;
  63.     unsigned int trust_level;
  64.     XID          group;
  65.     long  event_mask;
  66. } XSecurityAuthorizationAttributes;
  67. Xauth *XSecurityGenerateAuthorization(
  68.     Display *dpy,
  69.     Xauth *auth_in,
  70.     unsigned long valuemask,
  71.     XSecurityAuthorizationAttributes *attributes,
  72.     XSecurityAuthorization *auth_id_return);
  73. Status XSecurityRevokeAuthorization(
  74.     Display *dpy,
  75.     XSecurityAuthorization auth_id);
  76. _XFUNCPROTOEND
  77. typedef struct {
  78.     int type;       /* event base + XSecurityAuthorizationRevoked */
  79.     unsigned long serial;     /* # of last request processed by server */
  80.     Bool send_event;       /* true if this came from a SendEvent request */
  81.     Display *display;       /* Display the event was read from */
  82.     XSecurityAuthorization auth_id; /* revoked authorization id */
  83. } XSecurityAuthorizationRevokedEvent;
  84. #endif /* _SECURITY_SERVER */
  85. #endif /* _SECURITY_H */