Changeset 989 for vendor/current/source3/smbd/proto.h
- Timestamp:
- Nov 25, 2016, 8:04:54 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/smbd/proto.h
r988 r989 172 172 /* The following definitions come from smbd/dfree.c */ 173 173 174 uint64_t sys_disk_free(connection_struct *conn, const char *path, 175 uint64_t *bsize,uint64_t *dfree,uint64_t *dsize); 176 uint64_t get_dfree_info(connection_struct *conn, 177 const char *path, 178 uint64_t *bsize, 179 uint64_t *dfree, 180 uint64_t *dsize); 174 uint64_t sys_disk_free(connection_struct *conn, struct smb_filename *fname, 175 uint64_t *bsize, uint64_t *dfree, uint64_t *dsize); 176 uint64_t get_dfree_info(connection_struct *conn, struct smb_filename *fname, 177 uint64_t *bsize, uint64_t *dfree, uint64_t *dsize); 181 178 182 179 /* The following definitions come from smbd/dir.c */ … … 260 257 int file_set_dosmode(connection_struct *conn, struct smb_filename *smb_fname, 261 258 uint32_t dosmode, const char *parent_dir, bool newfile); 259 bool get_ea_dos_attribute(connection_struct *conn, 260 struct smb_filename *smb_fname, 261 uint32_t *pattr); 262 262 NTSTATUS file_set_sparse(connection_struct *conn, 263 263 struct files_struct *fsp, … … 681 681 void break_kernel_oplock(struct messaging_context *msg_ctx, files_struct *fsp); 682 682 NTSTATUS set_file_oplock(files_struct *fsp); 683 bool remove_oplock_under_lock(files_struct *fsp, struct share_mode_lock *lck); 683 684 bool remove_oplock(files_struct *fsp); 684 685 bool downgrade_oplock(files_struct *fsp); … … 762 763 uint32_t security_info_wanted, 763 764 struct security_descriptor **sd); 764 NTSTATUS make_default_filesystem_acl(TALLOC_CTX *ctx,765 const char *name,766 SMB_STRUCT_STAT *psbuf,767 struct security_descriptor **ppdesc);768 765 int posix_sys_acl_blob_get_file(vfs_handle_struct *handle, 769 766 const char *path_p, … … 830 827 /* The following definitions come from smbd/quotas.c */ 831 828 832 bool disk_quotas(connection_struct *conn, const char *path, uint64_t *bsize, 833 uint64_t *dfree, uint64_t *dsize); 834 bool disk_quotas_vxfs(const char *name, char *path, uint64_t *bsize, uint64_t *dfree, uint64_t *dsize); 829 bool disk_quotas(connection_struct *conn, struct smb_filename *fname, 830 uint64_t *bsize, uint64_t *dfree, uint64_t *dsize); 835 831 836 832 /* The following definitions come from smbd/reply.c */ … … 916 912 void reply_readbraw(struct smb_request *req); 917 913 void reply_lockread(struct smb_request *req); 914 int setup_readX_header(char *outbuf, size_t smb_maxcnt); 918 915 void reply_read(struct smb_request *req); 919 916 void reply_read_and_X(struct smb_request *req);
Note:
See TracChangeset
for help on using the changeset viewer.