Ignore:
Timestamp:
May 27, 2009, 9:09:42 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update 3.2 branch to 3.2.8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.2.x/source/include/proto.h

    r228 r232  
    448448bool dbwrap_fetch_uint32(struct db_context *db, const char *keystr,
    449449                         uint32_t *val);
    450 bool dbwrap_store_uint32(struct db_context *db, const char *keystr, uint32_t v);
     450int dbwrap_store_uint32(struct db_context *db, const char *keystr, uint32_t v);
    451451uint32_t dbwrap_change_uint32_atomic(struct db_context *db, const char *keystr,
    452452                                     uint32_t *oldval, uint32_t change_val);
     
    543543                                         struct timeval *to_ret);
    544544int event_loop_once(struct event_context *ev);
     545void event_context_reinit(struct event_context *ev);
    545546struct event_context *event_context_init(TALLOC_CTX *mem_ctx);
    546 int set_event_dispatch_time(struct event_context *event_ctx,
    547                             const char *event_name, struct timeval when);
    548 int cancel_named_event(struct event_context *event_ctx,
    549                        const char *event_name);
    550547void dump_event_list(struct event_context *event_ctx);
    551548
     
    990987ssize_t sys_read(int fd, void *buf, size_t count);
    991988ssize_t sys_write(int fd, const void *buf, size_t count);
     989ssize_t sys_writev(int fd, const struct iovec *iov, int iovcnt);
    992990ssize_t sys_pread(int fd, void *buf, size_t count, SMB_OFF_T off);
    993991ssize_t sys_pwrite(int fd, const void *buf, size_t count, SMB_OFF_T off);
     
    12471245void become_daemon(bool Fork, bool no_process_group);
    12481246bool reinit_after_fork(struct messaging_context *msg_ctx,
     1247                       struct event_context *ev_ctx,
    12491248                       bool parent_longlived);
    12501249bool yesno(const char *p);
     
    15181517                                  size_t *size_ret);
    15191518NTSTATUS read_data(int fd, char *buffer, size_t N);
     1519ssize_t write_data_iov(int fd, const struct iovec *orig_iov, int iovcnt);
    15201520ssize_t write_data(int fd, const char *buffer, size_t N);
    15211521bool send_keepalive(int client);
     
    46454645
    46464646bool saf_store( const char *domain, const char *servername );
     4647bool saf_join_store( const char *domain, const char *servername );
    46474648bool saf_delete( const char *domain );
    46484649char *saf_fetch( const char *domain );
     
    51115112bool is_unused_share_mode_entry(const struct share_mode_entry *e);
    51125113void set_share_mode(struct share_mode_lock *lck, files_struct *fsp,
    5113                         uid_t uid, uint16 mid, uint16 op_type, bool initial_delete_on_close_allowed);
     5114                    uid_t uid, uint16 mid, uint16 op_type);
    51145115void add_deferred_open(struct share_mode_lock *lck, uint16 mid,
    51155116                       struct timeval request_time,
     
    51215122NTSTATUS can_set_delete_on_close(files_struct *fsp, bool delete_on_close,
    51225123                                 uint32 dosmode);
    5123 bool can_set_initial_delete_on_close(const struct share_mode_lock *lck);
    51245124void set_delete_on_close_token(struct share_mode_lock *lck, UNIX_USER_TOKEN *tok);
    51255125void set_delete_on_close_lck(struct share_mode_lock *lck, bool delete_on_close, UNIX_USER_TOKEN *tok);
    51265126bool set_delete_on_close(files_struct *fsp, bool delete_on_close, UNIX_USER_TOKEN *tok);
    5127 bool set_allow_initial_delete_on_close(struct share_mode_lock *lck, files_struct *fsp, bool delete_on_close);
    51285127bool set_sticky_write_time(struct file_id fileid, struct timespec write_time);
    51295128bool set_write_time(struct file_id fileid, struct timespec write_time);
     
    65686567
    65696568NTSTATUS print_fsp_open(connection_struct *conn, const char *fname,
    6570                         files_struct *fsp);
     6569                        files_struct *fsp, SMB_STRUCT_STAT *psbuf);
    65716570void print_fsp_end(files_struct *fsp, enum file_close_type close_type);
    65726571
Note: See TracChangeset for help on using the changeset viewer.