diff options
author | Jeremy Allison <jra@samba.org> | 2020-01-28 09:51:17 -0800 |
---|---|---|
committer | Ralph Boehme <slow@samba.org> | 2020-02-18 21:08:33 +0000 |
commit | 96bc3298fc025d1d76fc06833fece6c62faa5e1a (patch) | |
tree | 107649366770e3a16ebdbd4d21a5b2fb2541fe74 /source3/include/vfs_macros.h | |
parent | 74b47bf578dab9ce94a9f2439fa672e51afe809e (diff) | |
download | samba-96bc3298fc025d1d76fc06833fece6c62faa5e1a.tar.gz |
s3: VFS: Add SMB_VFS_READ_DFS_PATHAT().
Not yet used.
Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
Diffstat (limited to 'source3/include/vfs_macros.h')
-rw-r--r-- | source3/include/vfs_macros.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/source3/include/vfs_macros.h b/source3/include/vfs_macros.h index d4ccb8f5c73..112169ab83b 100644 --- a/source3/include/vfs_macros.h +++ b/source3/include/vfs_macros.h @@ -90,6 +90,20 @@ (smb_fname), \ (reflist), \ (count)) +#define SMB_VFS_READ_DFS_PATHAT(conn, mem_ctx, dirfsp, smb_fname, ppreflist, pcount) \ + smb_vfs_call_read_dfs_pathat((conn)->vfs_handles, \ + (mem_ctx), \ + (dirfsp), \ + (smb_fname), \ + (ppreflist), \ + (pcount)) +#define SMB_VFS_NEXT_READ_DFS_PATHAT(handle, mem_ctx, dirfsp, smb_fname, ppreflist, pcount) \ + smb_vfs_call_read_dfs_pathat((handle)->next, \ + (mem_ctx), \ + (dirfsp), \ + (smb_fname), \ + (ppreflist), \ + (pcount)) /* Directory operations */ #define SMB_VFS_OPENDIR(conn, smb_fname, mask, attr) \ |