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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: ICEutil.h,v 1.5 2001/02/09 02:03:26 xorgcvs Exp $ */
  2. /******************************************************************************
  3. Copyright 1993, 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. Author: Ralph Mor, X Consortium
  21. ******************************************************************************/
  22. /* $XFree86: xc/lib/ICE/ICEutil.h,v 1.4 2001/12/20 19:40:59 tsi Exp $ */
  23. #ifndef _ICEUTIL_H_
  24. #define _ICEUTIL_H_
  25. #include <X11/Xfuncproto.h>
  26. #include <stdio.h>
  27. _XFUNCPROTOBEGIN
  28. /*
  29.  * Data structure for entry in ICE authority file
  30.  */
  31. typedef struct {
  32.     char         *protocol_name;
  33.     unsigned short  protocol_data_length;
  34.     char        *protocol_data;
  35.     char         *network_id;
  36.     char         *auth_name;
  37.     unsigned short  auth_data_length;
  38.     char        *auth_data;
  39. } IceAuthFileEntry;
  40. /*
  41.  * Authentication data maintained in memory.
  42.  */
  43. typedef struct {
  44.     char         *protocol_name;
  45.     char     *network_id;
  46.     char         *auth_name;
  47.     unsigned short  auth_data_length;
  48.     char        *auth_data;
  49. } IceAuthDataEntry;
  50. /*
  51.  * Return values from IceLockAuthFile
  52.  */
  53. #define IceAuthLockSuccess 0   /* lock succeeded */
  54. #define IceAuthLockError 1   /* lock unexpectely failed, check errno */
  55. #define IceAuthLockTimeout 2   /* lock failed, timeouts expired */
  56. /*
  57.  * Function Prototypes
  58.  */
  59. extern char *IceAuthFileName (
  60.     void
  61. );
  62. extern int IceLockAuthFile (
  63.     char * /* file_name */,
  64.     int /* retries */,
  65.     int /* timeout */,
  66.     long /* dead */
  67. );
  68. extern void IceUnlockAuthFile (
  69.     char * /* file_name */
  70. );
  71. extern IceAuthFileEntry *IceReadAuthFileEntry (
  72.     FILE * /* auth_file */
  73. );
  74. extern void IceFreeAuthFileEntry (
  75.     IceAuthFileEntry * /* auth */
  76. );
  77. extern Status IceWriteAuthFileEntry (
  78.     FILE * /* auth_file */,
  79.     IceAuthFileEntry * /* auth */
  80. );
  81. extern IceAuthFileEntry *IceGetAuthFileEntry (
  82.     char * /* protocol_name */,
  83.     char * /* network_id */,
  84.     char * /* auth_name */
  85. );
  86. extern char *IceGenerateMagicCookie (
  87.     int /* len */
  88. );
  89. extern void IceSetPaAuthData (
  90.     int /* numEntries */,
  91.     IceAuthDataEntry * /* entries */
  92. );
  93. _XFUNCPROTOEND
  94. #endif /* _ICEUTIL_H_ */