Blame src/lib/gssapi/mechglue/g_buffer_set.c

Packit Service 99d1c0
/*
Packit Service 99d1c0
 * Copyright 2008 by the Massachusetts Institute of Technology.
Packit Service 99d1c0
 * All Rights Reserved.
Packit Service 99d1c0
 *
Packit Service 99d1c0
 * Export of this software from the United States of America may
Packit Service 99d1c0
 *   require a specific license from the United States Government.
Packit Service 99d1c0
 *   It is the responsibility of any person or organization contemplating
Packit Service 99d1c0
 *   export to obtain such a license before exporting.
Packit Service 99d1c0
 *
Packit Service 99d1c0
 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
Packit Service 99d1c0
 * distribute this software and its documentation for any purpose and
Packit Service 99d1c0
 * without fee is hereby granted, provided that the above copyright
Packit Service 99d1c0
 * notice appear in all copies and that both that copyright notice and
Packit Service 99d1c0
 * this permission notice appear in supporting documentation, and that
Packit Service 99d1c0
 * the name of M.I.T. not be used in advertising or publicity pertaining
Packit Service 99d1c0
 * to distribution of the software without specific, written prior
Packit Service 99d1c0
 * permission.  Furthermore if you modify this software you must label
Packit Service 99d1c0
 * your software as modified software and not distribute it in such a
Packit Service 99d1c0
 * fashion that it might be confused with the original M.I.T. software.
Packit Service 99d1c0
 * M.I.T. makes no representations about the suitability of
Packit Service 99d1c0
 * this software for any purpose.  It is provided "as is" without express
Packit Service 99d1c0
 * or implied warranty.
Packit Service 99d1c0
 */
Packit Service 99d1c0
Packit Service 99d1c0
#include "mglueP.h"
Packit Service 99d1c0
#include <stdio.h>
Packit Service 99d1c0
#ifdef HAVE_STDLIB_H
Packit Service 99d1c0
#include <stdlib.h>
Packit Service 99d1c0
#endif
Packit Service 99d1c0
#include <string.h>
Packit Service 99d1c0
#include <errno.h>
Packit Service 99d1c0
Packit Service 99d1c0
OM_uint32 KRB5_CALLCONV gss_create_empty_buffer_set
Packit Service 99d1c0
	   (OM_uint32 * minor_status,
Packit Service 99d1c0
	    gss_buffer_set_t *buffer_set)
Packit Service 99d1c0
{
Packit Service 99d1c0
    return generic_gss_create_empty_buffer_set(minor_status, buffer_set);
Packit Service 99d1c0
}
Packit Service 99d1c0
Packit Service 99d1c0
OM_uint32 KRB5_CALLCONV gss_add_buffer_set_member
Packit Service 99d1c0
	   (OM_uint32 * minor_status,
Packit Service 99d1c0
	    const gss_buffer_t member_buffer,
Packit Service 99d1c0
	    gss_buffer_set_t *buffer_set)
Packit Service 99d1c0
{
Packit Service 99d1c0
    return generic_gss_add_buffer_set_member(minor_status,
Packit Service 99d1c0
					     member_buffer,
Packit Service 99d1c0
					     buffer_set);
Packit Service 99d1c0
}
Packit Service 99d1c0
Packit Service 99d1c0
OM_uint32 KRB5_CALLCONV gss_release_buffer_set
Packit Service 99d1c0
	   (OM_uint32 * minor_status,
Packit Service 99d1c0
	    gss_buffer_set_t *buffer_set)
Packit Service 99d1c0
{
Packit Service 99d1c0
    return generic_gss_release_buffer_set(minor_status, buffer_set);
Packit Service 99d1c0
}