1bbe1b32bSmrg/* 2bbe1b32bSmrgCopyright 1987, 1998 The Open Group 3bbe1b32bSmrg 4bbe1b32bSmrgPermission to use, copy, modify, distribute, and sell this software and its 5bbe1b32bSmrgdocumentation for any purpose is hereby granted without fee, provided that 6bbe1b32bSmrgthe above copyright notice appear in all copies and that both that 7bbe1b32bSmrgcopyright notice and this permission notice appear in supporting 8bbe1b32bSmrgdocumentation. 9bbe1b32bSmrg 10bbe1b32bSmrgThe above copyright notice and this permission notice shall be included in 11bbe1b32bSmrgall copies or substantial portions of the Software. 12bbe1b32bSmrg 13bbe1b32bSmrgTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14bbe1b32bSmrgIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15bbe1b32bSmrgFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16bbe1b32bSmrgOPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 17bbe1b32bSmrgAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 18bbe1b32bSmrgCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 19bbe1b32bSmrg 20bbe1b32bSmrgExcept as contained in this notice, the name of The Open Group shall not be 21bbe1b32bSmrgused in advertising or otherwise to promote the sale, use or other dealings 22bbe1b32bSmrgin this Software without prior written authorization from The Open Group. 23bbe1b32bSmrg * Copyright 1990, 1991 Network Computing Devices; 24bbe1b32bSmrg * Portions Copyright 1987 by Digital Equipment Corporation 25bbe1b32bSmrg * 26bbe1b32bSmrg * Permission to use, copy, modify, distribute, and sell this software and its 27bbe1b32bSmrg * documentation for any purpose is hereby granted without fee, provided that 28bbe1b32bSmrg * the above copyright notice appear in all copies and that both that 29bbe1b32bSmrg * copyright notice and this permission notice appear in supporting 30bbe1b32bSmrg * documentation, and that the names of Network Computing Devices, 31bbe1b32bSmrg * or Digital not be used in advertising or 32bbe1b32bSmrg * publicity pertaining to distribution of the software without specific, 33bbe1b32bSmrg * written prior permission. Network Computing Devices, or Digital 34bbe1b32bSmrg * make no representations about the 35bbe1b32bSmrg * suitability of this software for any purpose. It is provided "as is" 36bbe1b32bSmrg * without express or implied warranty. 37bbe1b32bSmrg * 38bbe1b32bSmrg * NETWORK COMPUTING DEVICES, AND DIGITAL DISCLAIM ALL WARRANTIES WITH 39bbe1b32bSmrg * REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 40bbe1b32bSmrg * AND FITNESS, IN NO EVENT SHALL NETWORK COMPUTING DEVICES, OR DIGITAL BE 41bbe1b32bSmrg * LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 42bbe1b32bSmrg * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 43bbe1b32bSmrg * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 44bbe1b32bSmrg * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 45bbe1b32bSmrg * 46bbe1b32bSmrg */ 47bbe1b32bSmrg 48bbe1b32bSmrg#ifndef _AUTHSTR_H_ 49bbe1b32bSmrg#define _AUTHSTR_H_ 50bbe1b32bSmrg#include "auth.h" 51bbe1b32bSmrg 52bbe1b32bSmrgtypedef struct _authcontext { 53bbe1b32bSmrg char *authname; 54bbe1b32bSmrg char *authdata; 55bbe1b32bSmrg FSID acid; 56bbe1b32bSmrg} AuthContextRec; 57bbe1b32bSmrg 58bbe1b32bSmrg#endif /* _AUTHSTR_H_ */ 59