diff options
author | Jeremy Allison <jra@samba.org> | 2007-02-20 06:22:20 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:18:06 -0500 |
commit | f77bdcf6c71a9d0274d96298b136300d5bb05bb1 (patch) | |
tree | 1234d128f0e1af6e970ecac41c17677cb6448da2 /source3/include | |
parent | 83dce235507cab7fef284e012982f5665aff55c4 (diff) | |
download | samba-f77bdcf6c71a9d0274d96298b136300d5bb05bb1.tar.gz samba-f77bdcf6c71a9d0274d96298b136300d5bb05bb1.tar.bz2 samba-f77bdcf6c71a9d0274d96298b136300d5bb05bb1.zip |
r21460: Fix for server-side processing of SPNEGO auth
fragmented into "max xmit" size security blob
chunks. Bug #4400. Needs limits adding, and also
a client-side version.
Jeremy.
(This used to be commit aa69f2481aafee5dccc3783b8a6e23ca4eb0dbfa)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index cc03722c2b..cea7638d79 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -1719,6 +1719,15 @@ struct pwd_info { fstring password; }; +/* For split krb5 SPNEGO blobs. */ +struct pending_auth_data { + struct pending_auth_data *prev, *next; + uint16 vuid; /* Tag for this entry. */ + uint16 smbpid; /* Alternate tag for this entry. */ + size_t needed_len; + DATA_BLOB partial_data; +}; + typedef struct user_struct { struct user_struct *next, *prev; uint16 vuid; /* Tag for this entry. */ @@ -1748,7 +1757,6 @@ typedef struct user_struct { struct auth_serversupplied_info *server_info; struct auth_ntlmssp_state *auth_ntlmssp_state; - } user_struct; struct unix_error_map { |