diff options
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index 4d7d4b2f385..3c727bafbf8 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -627,7 +627,16 @@ struct smb_request { size_t unread_bytes; bool encrypted; connection_struct *conn; + + /* + * Chained request handling + */ struct files_struct *chain_fsp; + + /* + * Here we collect the outbufs from the chain handlers + */ + uint8_t *chain_outbuf; }; /* Defines for the sent_oplock_break field above. */ |