Ignore:
Timestamp:
Nov 25, 2016, 8:04:54 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to version 4.4.7

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/smbd/proto.h

    r988 r989  
    172172/* The following definitions come from smbd/dfree.c  */
    173173
    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);
     174uint64_t sys_disk_free(connection_struct *conn, struct smb_filename *fname,
     175                       uint64_t *bsize, uint64_t *dfree, uint64_t *dsize);
     176uint64_t get_dfree_info(connection_struct *conn, struct smb_filename *fname,
     177                        uint64_t *bsize, uint64_t *dfree, uint64_t *dsize);
    181178
    182179/* The following definitions come from smbd/dir.c  */
     
    260257int file_set_dosmode(connection_struct *conn, struct smb_filename *smb_fname,
    261258                     uint32_t dosmode, const char *parent_dir, bool newfile);
     259bool get_ea_dos_attribute(connection_struct *conn,
     260                          struct smb_filename *smb_fname,
     261                          uint32_t *pattr);
    262262NTSTATUS file_set_sparse(connection_struct *conn,
    263263                         struct files_struct *fsp,
     
    681681void break_kernel_oplock(struct messaging_context *msg_ctx, files_struct *fsp);
    682682NTSTATUS set_file_oplock(files_struct *fsp);
     683bool remove_oplock_under_lock(files_struct *fsp, struct share_mode_lock *lck);
    683684bool remove_oplock(files_struct *fsp);
    684685bool downgrade_oplock(files_struct *fsp);
     
    762763                             uint32_t security_info_wanted,
    763764                             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);
    768765int posix_sys_acl_blob_get_file(vfs_handle_struct *handle,
    769766                                const char *path_p,
     
    830827/* The following definitions come from smbd/quotas.c  */
    831828
    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);
     829bool disk_quotas(connection_struct *conn, struct smb_filename *fname,
     830                 uint64_t *bsize, uint64_t *dfree, uint64_t *dsize);
    835831
    836832/* The following definitions come from smbd/reply.c  */
     
    916912void reply_readbraw(struct smb_request *req);
    917913void reply_lockread(struct smb_request *req);
     914int setup_readX_header(char *outbuf, size_t smb_maxcnt);
    918915void reply_read(struct smb_request *req);
    919916void reply_read_and_X(struct smb_request *req);
Note: See TracChangeset for help on using the changeset viewer.