handle username part of the ntlm name

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@22373 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2007-12-28 18:36:06 +00:00
parent 7e14fe4f56
commit 66f8605e07
6 changed files with 61 additions and 9 deletions

View File

@@ -97,6 +97,7 @@ struct ntlmv2_key {
extern struct ntlm_server_interface ntlmsspi_kdc_digest;
typedef struct ntlm_cred {
gss_cred_usage_t usage;
char *username;
char *domain;
struct ntlm_buf key;
@@ -128,7 +129,8 @@ typedef struct {
} *ntlm_ctx;
typedef struct {
char domain[1];
char *user;
char *domain;
} *ntlm_name;
#include <ntlm/ntlm-private.h>