Home | History | Annotate | Download | only in mech
      1 /*
      2  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
      3  * Use is subject to license terms.
      4  */
      5 /* -*- mode: c; indent-tabs-mode: nil -*- */
      6 /*
      7  * Copyright 1993 by OpenVision Technologies, Inc.
      8  *
      9  * Permission to use, copy, modify, distribute, and sell this software
     10  * and its documentation for any purpose is hereby granted without fee,
     11  * provided that the above copyright notice appears in all copies and
     12  * that both that copyright notice and this permission notice appear in
     13  * supporting documentation, and that the name of OpenVision not be used
     14  * in advertising or publicity pertaining to distribution of the software
     15  * without specific, written prior permission. OpenVision makes no
     16  * representations about the suitability of this software for any
     17  * purpose.  It is provided "as is" without express or implied warranty.
     18  *
     19  * OPENVISION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
     20  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
     21  * EVENT SHALL OPENVISION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
     22  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
     23  * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
     24  * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
     25  * PERFORMANCE OF THIS SOFTWARE.
     26  */
     27 
     28 #include "gssapiP_krb5.h"
     29 #include "mechglueP.h" /* SUNW17PACresync */
     30 
     31 /*
     32  * $Id: get_tkt_flags.c 21778 2009-01-22 23:21:11Z tlyu $
     33  */
     34 
     35 OM_uint32 KRB5_CALLCONV
     36 gss_krb5int_get_tkt_flags(OM_uint32 *minor_status,
     37                           const gss_ctx_id_t context_handle,
     38                           const gss_OID desired_object,
     39                           gss_buffer_set_t *data_set)
     40 {
     41     krb5_gss_ctx_id_rec *ctx;
     42     gss_buffer_desc rep;
     43 
     44     ctx = (krb5_gss_ctx_id_rec *) context_handle;
     45 
     46     rep.value = &ctx->krb_flags;
     47     rep.length = sizeof(ctx->krb_flags);
     48 
     49     return generic_gss_add_buffer_set_member(minor_status, &rep, data_set);
     50 }
     51