From 1d012a6780c543620413b24237cb7e9b97a6e3bc Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 6 Sep 2012 14:23:26 +0200 Subject: s3: introduce a new share config option "durable handles" defaulting to "yes" This is in order to be able to turn durable handles off and on on a per share basis. Note: This is only used in combination with: kernel share modes = no kernel oplocks = no posix locking = no Which means CIFS/SMB2 only access. Signed-off-by: Stefan Metzmacher --- source3/include/proto.h | 1 + source3/param/loadparm.c | 1 + 2 files changed, 2 insertions(+) (limited to 'source3') diff --git a/source3/include/proto.h b/source3/include/proto.h index 44b9d716e5..6dbdf4eae1 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1327,6 +1327,7 @@ bool lp_afs_share(int ); bool lp_acl_check_permissions(int ); bool lp_acl_group_control(int ); bool lp_acl_map_full_control(int ); +bool lp_durable_handles(int); int lp_create_mask(int ); int lp_force_create_mode(int ); int lp_security_mask(int ); diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 563d6446a0..f1999ad817 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -282,6 +282,7 @@ static struct loadparm_service sDefault = #endif .ismb_encrypt = SMB_SIGNING_DEFAULT, .bKernelShareModes = true, + .bDurableHandles = true, .param_opt = NULL, .dummy = "" }; -- cgit