2005-09-17 01:11:50 +00:00
/*
Unix SMB / CIFS implementation .
simple kerberos5 routines for active directory
Copyright ( C ) Andrew Bartlett 2005
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 02:07:03 +00:00
the Free Software Foundation ; either version 3 of the License , or
2005-09-17 01:11:50 +00: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 02:07:03 +00:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2005-09-17 01:11:50 +00:00
*/
2011-03-19 00:44:56 +01:00
# ifndef _KRB5_INIT_CONTEXT_H_
# define _KRB5_INIT_CONTEXT_H_
2005-09-17 01:11:50 +00:00
struct smb_krb5_context {
2008-08-01 19:29:08 +02:00
krb5_context krb5_context ;
2012-04-20 13:14:30 -04:00
void * pvt_log_data ;
2010-10-11 16:53:08 +11:00
struct tevent_context * current_ev ;
2005-09-17 01:11:50 +00:00
} ;
2012-04-20 13:14:30 -04:00
2008-12-29 20:24:57 +01:00
struct tevent_context ;
2007-12-02 20:56:26 +01:00
struct loadparm_context ;
2010-01-31 13:28:04 -05:00
krb5_error_code
smb_krb5_init_context_basic ( TALLOC_CTX * tmp_ctx ,
struct loadparm_context * lp_ctx ,
krb5_context * _krb5_context ) ;
2014-04-17 22:35:33 +12:00
krb5_error_code smb_krb5_init_context ( void * parent_ctx ,
2007-12-02 20:56:26 +01:00
struct loadparm_context * lp_ctx ,
2005-09-17 01:11:50 +00:00
struct smb_krb5_context * * smb_krb5_context ) ;
2012-04-21 16:35:48 -04:00
# ifdef SAMBA4_USES_HEIMDAL
2006-11-07 06:59:56 +00:00
krb5_error_code smb_krb5_send_and_recv_func ( krb5_context context ,
void * data ,
krb5_krbhst_info * hi ,
2008-08-01 11:17:48 +02:00
time_t timeout ,
2006-11-07 06:59:56 +00:00
const krb5_data * send_buf ,
krb5_data * recv_buf ) ;
2012-04-21 16:35:48 -04:00
krb5_error_code smb_krb5_context_set_event_ctx ( struct smb_krb5_context * smb_krb5_context ,
struct tevent_context * ev ,
struct tevent_context * * previous_ev ) ;
krb5_error_code smb_krb5_context_remove_event_ctx ( struct smb_krb5_context * smb_krb5_context ,
struct tevent_context * previous_ev ,
struct tevent_context * ev ) ;
# endif
2011-03-19 00:44:56 +01:00
# endif /* _KRB5_INIT_CONTEXT_H_ */