• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/source3/winbindd/

Lines Matching refs:backend

32  * Pointer to the backend methods. Modules register themselves here via
44 * Pointer to the alloc backend methods. Modules register themselves here via
56 * backend". Defaults to "idmap backend" in case the module (tdb, ldap) also
65 * Default idmap domain configured via "idmap backend".
169 DEBUG(5, ("Successfully added idmap backend '%s'\n", name));
218 DEBUG(5, ("Successfully added idmap alloc backend '%s'\n", name));
242 DEBUG(1, ("idmap_init: idmap backend uses deprecated "
276 * @param[in] modulename which backend module
302 DEBUG(3, ("idmap backend %s not found\n", modulename));
314 DEBUG(1, ("idmap backend %s not found\n", modulename));
339 * This routine takes the module name from the "idmap backend" parameter,
359 DEBUG(3, ("idmap_init: using '%s' as remote backend\n", modulename));
392 const char *backend;
401 backend = lp_parm_const_string(-1, config_option, "backend", NULL);
402 if (backend == NULL) {
403 DEBUG(1, ("no backend defined for %s\n", config_option));
407 result = idmap_init_domain(mem_ctx, domname, backend, NULL);
462 * to fetch the correct backend.
536 * Initialize the idmap alloc backend
540 * This routine first looks at "idmap alloc backend" and if that is not
541 * defined, it uses "idmap backend" for the module name.
545 const char *backend;
562 backend = lp_idmap_alloc_backend();
563 if ((backend == NULL) || (backend[0] == '\0')) {
564 backend = lp_idmap_backend();
567 if (backend == NULL) {
568 DEBUG(3, ("no idmap alloc backend defined\n"));
573 if (!parse_idmap_module(idmap_alloc_ctx, backend, &modulename,
575 DEBUG(1, ("parse_idmap_module %s failed\n", backend));
590 DEBUG(1, ("could not find idmap alloc module %s\n", backend));
599 "backend, deferred!\n"));