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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: Xauth.h,v 1.4 2001/02/09 02:03:42 xorgcvs Exp $ */
  2. /*
  3. Copyright 1988, 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. */
  21. /* $XFree86: xc/lib/Xau/Xauth.h,v 1.5 2001/12/14 19:54:36 dawes Exp $ */
  22. #ifndef _Xauth_h
  23. #define _Xauth_h
  24. typedef struct xauth {
  25.     unsigned short   family;
  26.     unsigned short   address_length;
  27.     char         *address;
  28.     unsigned short   number_length;
  29.     char         *number;
  30.     unsigned short   name_length;
  31.     char         *name;
  32.     unsigned short   data_length;
  33.     char        *data;
  34. } Xauth;
  35. #ifndef _XAUTH_STRUCT_ONLY
  36. # include   <X11/Xfuncproto.h>
  37. # include   <X11/Xfuncs.h>
  38. # include   <stdio.h>
  39. # define FamilyLocal (256) /* not part of X standard (i.e. X.h) */
  40. # define FamilyWild  (65535)
  41. # define FamilyNetname    (254)   /* not part of X standard */
  42. # define FamilyKrb5Principal (253) /* Kerberos 5 principal name */
  43. # define FamilyLocalHost (252) /* for local non-net authentication */
  44. _XFUNCPROTOBEGIN
  45. char *XauFileName(void);
  46. Xauth *XauReadAuth(
  47. FILE* /* auth_file */
  48. );
  49. int XauLockAuth(
  50. _Xconst char* /* file_name */,
  51. int /* retries */,
  52. int /* timeout */,
  53. long /* dead */
  54. );
  55. int XauUnlockAuth(
  56. _Xconst char* /* file_name */
  57. );
  58. int XauWriteAuth(
  59. FILE* /* auth_file */,
  60. Xauth* /* auth */
  61. );
  62. Xauth *XauGetAuthByAddr(
  63. #if NeedWidePrototypes
  64. unsigned int /* family */,
  65. unsigned int /* address_length */,
  66. #else
  67. unsigned short /* family */,
  68. unsigned short /* address_length */,
  69. #endif
  70. _Xconst char* /* address */,
  71. #if NeedWidePrototypes
  72. unsigned int /* number_length */,
  73. #else
  74. unsigned short /* number_length */,
  75. #endif
  76. _Xconst char* /* number */,
  77. #if NeedWidePrototypes
  78. unsigned int /* name_length */,
  79. #else
  80. unsigned short /* name_length */,
  81. #endif
  82. _Xconst char* /* name */
  83. );
  84. Xauth *XauGetBestAuthByAddr(
  85. #if NeedWidePrototypes
  86. unsigned int /* family */,
  87. unsigned int /* address_length */,
  88. #else
  89. unsigned short /* family */,
  90. unsigned short /* address_length */,
  91. #endif
  92. _Xconst char* /* address */,
  93. #if NeedWidePrototypes
  94. unsigned int /* number_length */,
  95. #else
  96. unsigned short /* number_length */,
  97. #endif
  98. _Xconst char* /* number */,
  99. int /* types_length */,
  100. char** /* type_names */,
  101. _Xconst int* /* type_lengths */
  102. );
  103. void XauDisposeAuth(
  104. Xauth* /* auth */
  105. );
  106. #ifdef K5AUTH
  107. #include <krb5/krb5.h>
  108. /* 9/93: krb5.h leaks some symbols */
  109. #undef BITS32
  110. #undef xfree
  111. int XauKrb5Encode(
  112.      krb5_principal /* princ */,
  113.      krb5_data * /* outbuf */
  114. );
  115. int XauKrb5Decode(
  116.      krb5_data /* inbuf */,
  117.      krb5_principal * /* princ */
  118. );
  119. #endif /* K5AUTH */
  120. _XFUNCPROTOEND
  121. /* Return values from XauLockAuth */
  122. # define LOCK_SUCCESS 0 /* lock succeeded */
  123. # define LOCK_ERROR 1 /* lock unexpectely failed, check errno */
  124. # define LOCK_TIMEOUT 2 /* lock failed, timeouts expired */
  125. #endif /* _XAUTH_STRUCT_ONLY */
  126. #endif /* _Xauth_h */