X-Git-Url: http://git.samba.org/?p=samba.git;a=blobdiff_plain;f=source4%2Fsmb_server%2Fsmb_server.h;h=5324fb8a671ceb1743cde18314716420aae2e57e;hp=121fff6ecd061da90f6fcb181fa2e83b47777f75;hb=cf5cb51bfc7f7c23f366fcb902946d6f4feb2d3b;hpb=145702b75604be85f71d9e0e5b8fe048da439958 diff --git a/source4/smb_server/smb_server.h b/source4/smb_server/smb_server.h index 121fff6ecd0..5324fb8a671 100644 --- a/source4/smb_server/smb_server.h +++ b/source4/smb_server/smb_server.h @@ -281,4 +281,12 @@ struct smbsrv_connection { /* this holds list of replies that are waiting to be sent to the client */ struct smbsrv_request *pending_send; + + /* a list of partially received transaction requests */ + struct smbsrv_trans_partial { + struct smbsrv_trans_partial *next, *prev; + struct smbsrv_request *req; + struct smb_trans2 *trans; + uint8_t command; + } *trans_partial; };