diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-07-07 19:37:14 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-07-07 20:59:19 +0200 |
commit | 5e4b8d6e5142617350bf9482b007f972a34bf942 (patch) | |
tree | b51f976ed0fd47c3403c72822f9b12a621ca6613 /source4/smb_server/smb_server.h | |
parent | 997f539bf568f555f9e7a7f51de23cd13c732b1c (diff) | |
download | samba-5e4b8d6e5142617350bf9482b007f972a34bf942.tar.gz |
smb_server/smb: prepare multi fragmented nttrans requests
metze
(This used to be commit 36a39b92d732a682e38ad4b3f733951fee4757ed)
Diffstat (limited to 'source4/smb_server/smb_server.h')
-rw-r--r-- | source4/smb_server/smb_server.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source4/smb_server/smb_server.h b/source4/smb_server/smb_server.h index ac3e0f3bd3..dd4ec3281b 100644 --- a/source4/smb_server/smb_server.h +++ b/source4/smb_server/smb_server.h @@ -355,8 +355,11 @@ struct smbsrv_connection { struct smbsrv_trans_partial { struct smbsrv_trans_partial *next, *prev; struct smbsrv_request *req; - struct smb_trans2 *trans; uint8_t command; + union { + struct smb_trans2 *trans; + struct smb_nttrans *nttrans; + } u; } *trans_partial; /* configuration parameters */ |