1# 2# Copyright 1993 by OpenVision Technologies, Inc. 3# 4# Permission to use, copy, modify, distribute, and sell this software 5# and its documentation for any purpose is hereby granted without fee, 6# provided that the above copyright notice appears in all copies and 7# that both that copyright notice and this permission notice appear in 8# supporting documentation, and that the name of OpenVision not be used 9# in advertising or publicity pertaining to distribution of the software 10# without specific, written prior permission. OpenVision makes no 11# representations about the suitability of this software for any 12# purpose. It is provided "as is" without express or implied warranty. 13# 14# OPENVISION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 15# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 16# EVENT SHALL OPENVISION BE LIABLE FOR ANY SPECIAL, INDIRECT OR 17# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF 18# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 19# OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 20# PERFORMANCE OF THIS SOFTWARE. 21# 22 23# 24# $Id$ 25# 26 27error_table ggss 28 29error_code G_BAD_SERVICE_NAME, "No @ in SERVICE-NAME name string" 30error_code G_BAD_STRING_UID, "STRING-UID-NAME contains nondigits" 31error_code G_NOUSER, "UID does not resolve to username" 32error_code G_VALIDATE_FAILED, "Validation error" 33error_code G_BUFFER_ALLOC, "Couldn't allocate gss_buffer_t data" 34error_code G_BAD_MSG_CTX, "Message context invalid" 35error_code G_WRONG_SIZE, "Buffer is the wrong size" 36error_code G_BAD_USAGE, "Credential usage type is unknown" 37error_code G_UNKNOWN_QOP, "Unknown quality of protection specified" 38error_code G_NO_HOSTNAME, "Local host name could not be determined" 39error_code G_BAD_HOSTNAME, "Hostname in SERVICE-NAME string could not be canonicalized" 40error_code G_WRONG_MECH, "Mechanism is incorrect" 41error_code G_BAD_TOK_HEADER, "Token header is malformed or corrupt" 42error_code G_BAD_DIRECTION, "Packet was replayed in wrong direction" 43error_code G_TOK_TRUNC, "Token is missing data" 44error_code G_REFLECT, "Token was reflected" 45error_code G_WRONG_TOKID, "Received token ID does not match expected token ID" 46error_code G_CRED_USAGE_MISMATCH, "The given credential's usage does not match the requested usage" 47error_code G_STORE_ACCEPTOR_CRED_NOSUPP, "Storing of acceptor credentials is not supported by the mechanism" 48error_code G_STORE_NON_DEFAULT_CRED_NOSUPP, "Storing of non-default credentials is not supported by the mechanism" 49end 50