rename token structure in consistency with rest of GSS-API

From: Luke Howard <lukeh@PADL.COM>


git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@12690 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2003-08-28 10:41:36 +00:00
parent bdf7544c1b
commit d432d068e5
4 changed files with 16 additions and 16 deletions

View File

@@ -42,7 +42,7 @@ typedef struct gss_arcfour_mic_token {
u_char Filler[4];
u_char SND_SEQ[8];
u_char SGN_CKSUM[8];
} gss_arcfour_mic_token;
} gss_arcfour_mic_token_desc, *gss_arcfour_mic_token;
typedef struct gss_arcfour_wrap_token {
u_char TOK_ID[2]; /* 02 01 */
@@ -52,7 +52,7 @@ typedef struct gss_arcfour_wrap_token {
u_char SND_SEQ[8];
u_char SGN_CKSUM[8];
u_char Confounder[8];
} gss_arcfour_wrap_token;
} gss_arcfour_wrap_token_desc, *gss_arcfour_wrap_token;
OM_uint32 _gssapi_wrap_arcfour(OM_uint32 *minor_status,
const gss_ctx_id_t context_handle,