X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=import_name.c;h=d20d75cd7759d35edc93d84db19acc38f69864f4;hb=refs%2Fheads%2Fmeeting%2Fmoonshot2;hp=3e0654bfc89622e45b276dd4605e2a0311459de1;hpb=31cef49681566dc99790812f31de834dfce02c74;p=mech_eap.orig diff --git a/import_name.c b/import_name.c index 3e0654b..d20d75c 100644 --- a/import_name.c +++ b/import_name.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010, JANET(UK) + * Copyright (c) 2011, JANET(UK) * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -30,5 +30,18 @@ * SUCH DAMAGE. */ +/* + * Deserialise a name. + */ + #include "gssapiP_eap.h" +OM_uint32 +gss_import_name(OM_uint32 *minor, + gss_buffer_t import_name_buffer, + gss_OID input_name_type, + gss_name_t *output_name) +{ + return gssEapImportName(minor, import_name_buffer, + input_name_type, output_name); +}