2003-12-11 01:21:04 +03:00
/*
Unix SMB / CIFS implementation .
server side dcerpc defines
2005-01-11 19:53:02 +03:00
Copyright ( C ) Andrew Tridgell 2003 - 2005
Copyright ( C ) Stefan ( metze ) Metzmacher 2004 - 2005
2003-12-11 01:21:04 +03: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
2007-07-10 06:07:03 +04:00
the Free Software Foundation ; either version 3 of the License , or
2003-12-11 01:21:04 +03:00
( 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
2007-07-10 06:07:03 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2003-12-11 01:21:04 +03:00
*/
2004-02-02 16:28:29 +03:00
# ifndef SAMBA_DCERPC_SERVER_H
# define SAMBA_DCERPC_SERVER_H
2019-10-03 19:39:58 +03:00
# include "librpc/rpc/dcesrv_core.h"
2004-02-02 16:28:29 +03:00
2006-03-14 18:03:25 +03:00
struct model_ops ;
2010-10-11 02:49:13 +04:00
NTSTATUS dcesrv_add_ep ( struct dcesrv_context * dce_ctx ,
struct loadparm_context * lp_ctx ,
struct dcesrv_endpoint * e ,
struct tevent_context * event_ctx ,
2017-09-14 22:09:23 +03:00
const struct model_ops * model_ops ,
void * process_context ) ;
2008-04-02 16:18:31 +04:00
2019-01-23 22:37:21 +03:00
_PUBLIC_ struct imessaging_context * dcesrv_imessaging_context (
struct dcesrv_connection * conn ) ;
2019-01-23 22:41:54 +03:00
_PUBLIC_ struct server_id dcesrv_server_id ( struct dcesrv_connection * conn ) ;
2019-01-23 22:37:21 +03:00
2004-02-02 16:28:29 +03:00
# endif /* SAMBA_DCERPC_SERVER_H */