Manual Pages for Linux CentOS command on man XauUnlockAuth
MyWebUniversity

Manual Pages for Linux CentOS command on man XauUnlockAuth

Xau(3) Library Functions Manual Xau(3)

NAME Xau library: XauFileName, XauReadAuth, XauLockAuth, XauUnlockAuth,

XauWriteAuth, XauDisposeAuth, XauGetAuthByAddr, XauGetBestAuthByAddr - X authority database routines SYNOPSIS

#include typedef struct xauth { unsigned short family; unsigned short addresslength; char *address; unsigned short numberlength; char *number; unsigned short namelength; char *name; unsigned short datalength; char *data; } Xauth; char *XauFileName (void); Xauth *XauReadAuth (FILE *authfile); int XauWriteAuth (FILE *authfile, Xauth *auth); Xauth *XauGetAuthByAddr (unsigned short family, unsigned short addresslength, const char *address, unsigned short numberlength, const char *number, unsigned short namelength, const char *name); Xauth *XauGetBestAuthByAddr (unsigned short family, unsigned short addresslength, const char *address, unsigned short numberlength, const char *number, int typeslength, char **types, const int *typelengths); int XauLockAuth (const char *filename, int retries, int timeout, long dead); int XauUnlockAuth (const char *filename); int XauDisposeAuth (Xauth *auth); DESCRIPTION XauFileName generates the default authorization file name by first checking the XAUTHORITY environment variable if set, else it returns

$HOME/.Xauthority. This name is statically allocated and should not be freed. XauReadAuth reads the next entry from authfile. The entry is not statically allocated and should be freed by calling XauDisposeAuth. XauWriteAuth writes an authorization entry to authfile. It returns 1 on success, 0 on failure. XauGetAuthByAddr searches for an entry which matches the given network address/display number pair. The entry is not statically allocated and should be freed by calling XauDisposeAuth. XauGetBestAuthByAddr is similar to XauGetAuthByAddr, except that a list of acceptable authentication methods is specified. Xau will choose the file entry which matches the earliest entry in this list (e.g., the most secure authentication method). The types argument is an array of strings, one string for each authentication method. typeslength spec‐ ifies how many elements are in the types array. typeslengths is an array of integers representing the length of each string. XauLockAuth does the work necessary to synchronously update an autho‐

rization file. First it makes two file names, one with ``-c'' appended

to filename, the other with ``-l'' appended. If the ``-c'' file already exists and is more than dead seconds old, XauLockAuth removes

it and the associated ``-l'' file. To prevent possible synchronization troubles with NFS, a dead value of zero forces the files to be removed. XauLockAuth makes retries attempts to create and link the file names, pausing timeout seconds between each attempt. XauLockAuth returns a collection of values depending on the results: LOCKERROR A system error occurred, either a filename which is too long, or an unexpected failure from a system call. errno may prove useful. LOCKTIMEOUT retries attempts failed LOCKSUCCESS The lock succeeded. XauUnlockAuth undoes the work of XauLockAuth by unlinking both the

``-c'' and ``-l'' file names. XauDisposeAuth frees storage allocated to hold an authorization entry. SEE ALSO xauth(1), xdm(1) AUTHOR Keith Packard, MIT X Consortium X Version 11 libXau 1.0.8 Xau(3)




Contact us      |      About us      |      Term of use      |       Copyright © 2000-2019 MyWebUniversity.com ™