diff options
author | Pavel Shilovsky <pshilov@microsoft.com> | 2016-11-18 02:24:34 +0300 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2017-02-02 01:46:36 +0300 |
commit | 9bb17e0916a03ab901fb684e874d77a1e96b3d1e (patch) | |
tree | 5a4dc378ba0665c7c8f4684ad195c1294cba755f /fs/cifs/cifsglob.h | |
parent | 026e93dc0a3eefb0be060bcb9ecd8d7a7fd5c398 (diff) | |
download | linux-9bb17e0916a03ab901fb684e874d77a1e96b3d1e.tar.xz |
CIFS: Add transform header handling callbacks
We need to recognize and parse transformed packets in demultiplex
thread to find a corresponsing mid and process it further.
Signed-off-by: Pavel Shilovsky <pshilov@microsoft.com>
Diffstat (limited to 'fs/cifs/cifsglob.h')
-rw-r--r-- | fs/cifs/cifsglob.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h index 14196e00f79e..35cf62ba5416 100644 --- a/fs/cifs/cifsglob.h +++ b/fs/cifs/cifsglob.h @@ -440,6 +440,9 @@ struct smb_version_operations { struct smb_rqst *); /* free transform request */ void (*free_transform_rq)(struct smb_rqst *); + int (*is_transform_hdr)(void *buf); + int (*receive_transform)(struct TCP_Server_Info *, + struct mid_q_entry **); }; struct smb_version_values { |