]> git.decadent.org.uk Git - nfs-utils.git/blob - support/gssapi/g_inq_names.c
2005-08-26 Kevin Coffman <kwc@citi.umich.edu>
[nfs-utils.git] / support / gssapi / g_inq_names.c
1 /* #ident       "@(#)g_inquire_names.c 1.1     95/12/19 SMI" */
2
3 /*
4  * Copyright 1996 by Sun Microsystems, Inc.
5  *
6  * Permission to use, copy, modify, distribute, and sell this software
7  * and its documentation for any purpose is hereby granted without fee,
8  * provided that the above copyright notice appears in all copies and
9  * that both that copyright notice and this permission notice appear in
10  * supporting documentation, and that the name of Sun Microsystems not be used
11  * in advertising or publicity pertaining to distribution of the software
12  * without specific, written prior permission. Sun Microsystems makes no
13  * representations about the suitability of this software for any
14  * purpose.  It is provided "as is" without express or implied warranty.
15  *
16  * SUN MICROSYSTEMS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18  * EVENT SHALL SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
20  * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
21  * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22  * PERFORMANCE OF THIS SOFTWARE.
23  */
24
25 /*
26  *  glue routine for gss_inquire_context
27  */
28
29 #include "mglueP.h"
30
31 /* Last argument new for V2 */
32 OM_uint32 KRB5_CALLCONV
33 gss_inquire_names_for_mech(minor_status, mechanism, name_types)
34
35 OM_uint32 *     minor_status;
36 gss_OID         mechanism;
37 gss_OID_set *   name_types;
38
39 {
40     OM_uint32           status;
41     gss_mechanism       mech;
42
43     gss_initialize();
44
45     /*
46      * select the approprate underlying mechanism routine and
47      * call it.
48      */
49
50     mech = __gss_get_mechanism (mechanism);
51
52     if (mech) {
53
54         if (mech->gss_inquire_names_for_mech)
55             status = mech->gss_inquire_names_for_mech(
56 #ifdef USE_MECH_CONTEXT
57                                 mech->context,
58 #endif
59                                 minor_status,
60                                 mechanism,
61                                 name_types);
62         else
63             status = GSS_S_BAD_BINDINGS;
64
65         return(status);
66     }
67
68     return(GSS_S_NO_CONTEXT);
69 }