⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xauth.h

📁 远程桌面连接工具
💻 H
字号:
/* $XConsortium: Xauth.h /main/18 1996/07/31 16:08:18 dpw $ *//*Copyright (c) 1988  X ConsortiumPermission is hereby granted, free of charge, to any person obtaining a copyof this software and associated documentation files (the "Software"), to dealin the Software without restriction, including without limitation the rightsto use, copy, modify, merge, publish, distribute, sublicense, and/or sellcopies of the Software, and to permit persons to whom the Software isfurnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included inall copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THEX CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER INAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR INCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.Except as contained in this notice, the name of the X Consortium shall not beused in advertising or otherwise to promote the sale, use or other dealingsin this Software without prior written authorization from the X Consortium.*/#ifndef _Xauth_h#define _Xauth_htypedef struct xauth {    unsigned short   family;    unsigned short   address_length;    char    	    *address;    unsigned short   number_length;    char    	    *number;    unsigned short   name_length;    char    	    *name;    unsigned short   data_length;    char   	    *data;} Xauth;#ifndef _XAUTH_STRUCT_ONLY# include   <X11/Xfuncproto.h># include   <X11/Xfuncs.h># include   <stdio.h># define FamilyLocal (256)	/* not part of X standard (i.e. X.h) */# define FamilyWild  (65535)# define FamilyNetname    (254)   /* not part of X standard */# define FamilyKrb5Principal (253) /* Kerberos 5 principal name */# define FamilyLocalHost (252)	/* for local non-net authentication */_XFUNCPROTOBEGINchar *XauFileName();Xauth *XauReadAuth(#if NeedFunctionPrototypesFILE*	/* auth_file */#endif);int XauLockAuth(#if NeedFunctionPrototypes_Xconst char*	/* file_name */,int		/* retries */,int		/* timeout */,long		/* dead */#endif);int XauUnlockAuth(#if NeedFunctionPrototypes_Xconst char*	/* file_name */#endif);int XauWriteAuth(#if NeedFunctionPrototypesFILE*		/* auth_file */,Xauth*		/* auth */#endif);Xauth *XauGetAuthByName(#if NeedFunctionPrototypes_Xconst char*	/* display_name */#endif);Xauth *XauGetAuthByAddr(#if NeedFunctionPrototypes#if NeedWidePrototypesunsigned int	/* family */,unsigned int	/* address_length */,#elseunsigned short	/* family */,unsigned short	/* address_length */,#endif_Xconst char*	/* address */,#if NeedWidePrototypesunsigned int	/* number_length */,#elseunsigned short	/* number_length */,#endif_Xconst char*	/* number */,#if NeedWidePrototypesunsigned int	/* name_length */,#elseunsigned short	/* name_length */,#endif_Xconst char*	/* name */#endif);Xauth *XauGetBestAuthByAddr(#if NeedFunctionPrototypes#if NeedWidePrototypesunsigned int	/* family */,unsigned int	/* address_length */,#elseunsigned short	/* family */,unsigned short	/* address_length */,#endif_Xconst char*	/* address */,#if NeedWidePrototypesunsigned int	/* number_length */,#elseunsigned short	/* number_length */,#endif_Xconst char*	/* number */,int		/* types_length */,char**		/* type_names */,_Xconst int*	/* type_lengths */#endif);void XauDisposeAuth(#if NeedFunctionPrototypesXauth*		/* auth */#endif);#ifdef K5AUTH#include <krb5/krb5.h>/* 9/93: krb5.h leaks some symbols */#undef BITS32#undef xfreeint XauKrb5Encode(#if NeedFunctionPrototypes     krb5_principal	/* princ */,     krb5_data *	/* outbuf */#endif);int XauKrb5Decode(#if NeedFunctionPrototypes     krb5_data		/* inbuf */,     krb5_principal *	/* princ */#endif);#endif /* K5AUTH */_XFUNCPROTOEND/* Return values from XauLockAuth */# define LOCK_SUCCESS	0	/* lock succeeded */# define LOCK_ERROR	1	/* lock unexpectely failed, check errno */# define LOCK_TIMEOUT	2	/* lock failed, timeouts expired */#endif /* _XAUTH_STRUCT_ONLY */#endif /* _Xauth_h */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -