2011-06-06 10:47:32 +04:00
/*
Unix SMB / CIFS implementation .
Parameter loading functions
Copyright ( C ) Andrew Bartlett 2011
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 3 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program . If not , see < http : //www.gnu.org/licenses/>.
*/
2011-06-01 17:22:24 +04:00
# include "includes.h"
2011-10-06 12:34:50 +04:00
# include "lib/param/s3_param.h"
2011-06-01 17:22:24 +04:00
2011-08-26 06:59:01 +04:00
static struct loadparm_service * lp_service_for_s4_ctx ( const char * servicename )
{
TALLOC_CTX * mem_ctx ;
struct loadparm_service * service ;
mem_ctx = talloc_stackframe ( ) ;
service = lp_service ( servicename ) ;
talloc_free ( mem_ctx ) ;
return service ;
}
static struct loadparm_service * lp_servicebynum_for_s4_ctx ( int servicenum )
{
TALLOC_CTX * mem_ctx ;
struct loadparm_service * service ;
mem_ctx = talloc_stackframe ( ) ;
service = lp_servicebynum ( servicenum ) ;
talloc_free ( mem_ctx ) ;
return service ;
}
2011-08-12 05:26:42 +04:00
static bool lp_load_for_s4_ctx ( const char * filename )
{
2011-08-12 09:40:26 +04:00
TALLOC_CTX * mem_ctx ;
bool status ;
mem_ctx = talloc_stackframe ( ) ;
status = lp_load ( filename , false , false , false , false ) ;
talloc_free ( mem_ctx ) ;
return status ;
2011-08-12 05:26:42 +04:00
}
2013-10-14 06:46:43 +04:00
# include "loadparm_ctx_table.c"
2011-06-01 17:22:24 +04:00
2012-06-27 17:24:39 +04:00
const struct loadparm_s3_helpers * loadparm_s3_helpers ( void )
2011-06-01 17:22:24 +04:00
{
2014-01-24 06:38:59 +04:00
struct loadparm_s3_helpers * helpers ;
helpers = & s3_fns ;
helpers - > globals = get_globals ( ) ;
helpers - > lp_string = lp_string ;
return helpers ;
2011-06-01 17:22:24 +04:00
}