diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-11-19 06:39:12 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:46:29 -0500 |
commit | fc04e3e795cebca5723c24e097f5374a23b2247b (patch) | |
tree | 88852c9d430623591fa004f7f21cac6b14c214a7 /source4/include | |
parent | 7d6f36682eab29cb23c40dd915acad61fb5d68cb (diff) | |
download | samba-fc04e3e795cebca5723c24e097f5374a23b2247b.tar.gz samba-fc04e3e795cebca5723c24e097f5374a23b2247b.tar.bz2 samba-fc04e3e795cebca5723c24e097f5374a23b2247b.zip |
r11801: - added basic SMB2 find support
- added SMB2-SCANFIND test
- cleaned up continue flags in EAs and find requests
(This used to be commit 8792bc07d927e6470874230153177748afae3ee8)
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/smb_interfaces.h | 2 | ||||
-rw-r--r-- | source4/include/structs.h | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/source4/include/smb_interfaces.h b/source4/include/smb_interfaces.h index 9d42494fc5..49fe085f2c 100644 --- a/source4/include/smb_interfaces.h +++ b/source4/include/smb_interfaces.h @@ -461,7 +461,7 @@ union smb_fileinfo { struct { enum smb_fileinfo_level level; union smb_fileinfo_in in; - uint8_t ea_flags; /* SMB2 only - SMB2_GETINFO_EA_FLAG_* */ + uint8_t continue_flags; /* SMB2 only - SMB2_CONTINUE_FLAG_* */ struct smb_ea_list out; } all_eas; diff --git a/source4/include/structs.h b/source4/include/structs.h index 68f7f9af14..a846b39bcf 100644 --- a/source4/include/structs.h +++ b/source4/include/structs.h @@ -354,6 +354,5 @@ struct smb2_getinfo; struct smb2_setinfo; struct smb2_read; struct smb2_write; +struct smb2_find; struct smb2_handle; - -union smb2_fileinfo; |