Changeset 740 for vendor/current/source3/lib/dummysmbd.c
- Timestamp:
- Nov 14, 2012, 12:59:34 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/lib/dummysmbd.c
r414 r740 24 24 #include "includes.h" 25 25 26 int get_client_fd(void) 27 { 28 return -1; 29 } 30 31 int find_service(fstring service) 26 int find_service(TALLOC_CTX *ctx, const char *service_in, char **p_service_out) 32 27 { 33 28 return -1; … … 39 34 } 40 35 41 void cancel_pending_lock_requests_by_fid(files_struct *fsp, struct byte_range_lock *br_lck) 36 void cancel_pending_lock_requests_by_fid(files_struct *fsp, 37 struct byte_range_lock *br_lck, 38 enum file_close_type close_type) 42 39 { 43 40 } 44 41 45 void send_stat_cache_delete_message(const char *name) 42 void send_stat_cache_delete_message(struct messaging_context *msg_ctx, 43 const char *name) 46 44 { 47 45 } … … 59 57 60 58 struct event_context *smbd_event_context(void) 61 {62 return NULL;63 }64 65 struct messaging_context *smbd_messaging_context(void)66 59 { 67 60 return NULL;
Note:
See TracChangeset
for help on using the changeset viewer.