spnego.h revision 153838
113116Sbde/*-
213116Sbde * Copyright (c) 2005 Doug Rabson
313116Sbde * All rights reserved.
413116Sbde *
513116Sbde * Redistribution and use in source and binary forms, with or without
613116Sbde * modification, are permitted provided that the following conditions
713116Sbde * are met:
813116Sbde * 1. Redistributions of source code must retain the above copyright
913116Sbde *    notice, this list of conditions and the following disclaimer.
1013116Sbde * 2. Redistributions in binary form must reproduce the above copyright
1113116Sbde *    notice, this list of conditions and the following disclaimer in the
1213116Sbde *    documentation and/or other materials provided with the distribution.
1313116Sbde *
1413116Sbde * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1513116Sbde * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1613116Sbde * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1713116Sbde * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1813116Sbde * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1913116Sbde * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2013116Sbde * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2113116Sbde * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2213116Sbde * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2313116Sbde * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2413116Sbde * SUCH DAMAGE.
2513116Sbde *
2613116Sbde *	$FreeBSD: head/lib/libgssapi/spnego.h 153838 2005-12-29 14:40:22Z dfr $
2713116Sbde */
2813116Sbde
291541Srgrimestypedef xder_OID MechType;
30116189Sobrien
31116189Sobrientypedef struct {
32116189Sobrien	size_t MechTypeList_len;
3313116Sbde	MechType *MechTypeList_val;
3413116Sbde} MechTypeList;
3555206Speter