2007-10-08 15:11:46 +04:00
/*
Unix SMB / CIFS implementation .
Async helpers for blocking functions
Copyright ( C ) Volker Lendecke 2005
Copyright ( C ) Gerald Carter 2006
2007-10-08 16:56:57 +04:00
Copyright ( C ) Simo Sorce 2007
2007-10-08 15:11:46 +04:00
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/>.
*/
# include "includes.h"
# include "winbindd.h"
# undef DBGC_CLASS
# define DBGC_CLASS DBGC_WINBIND
2007-10-08 15:13:36 +04:00
static struct winbindd_child static_idmap_child ;
struct winbindd_child * idmap_child ( void )
{
return & static_idmap_child ;
}
2018-02-14 15:24:54 +03:00
struct dcerpc_binding_handle * idmap_child_handle ( void )
{
return static_idmap_child . binding_handle ;
}
2007-10-08 16:25:57 +04:00
static const struct winbindd_child_dispatch_table idmap_dispatch_table [ ] = {
2007-12-07 18:00:45 +03:00
{
2009-05-16 15:43:03 +04:00
. name = " PING " ,
. struct_cmd = WINBINDD_PING ,
. struct_fn = winbindd_dual_ping ,
2009-07-28 23:06:11 +04:00
} , {
. name = " NDRCMD " ,
. struct_cmd = WINBINDD_DUAL_NDRCMD ,
. struct_fn = winbindd_dual_ndrcmd ,
2007-12-07 18:00:45 +03:00
} , {
. name = NULL ,
}
2007-10-08 16:25:57 +04:00
} ;
2009-08-30 13:12:17 +04:00
void init_idmap_child ( void )
{
setup_child ( NULL , & static_idmap_child ,
idmap_dispatch_table ,
" log.winbindd " , " idmap " ) ;
}