2005-09-17 05:11:50 +04: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 06:07:03 +04:00
the Free Software Foundation ; either version 3 of the License , or
2005-09-17 05:11:50 +04: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/>.
2005-09-17 05:11:50 +04:00
*/
2011-03-19 02:44:56 +03:00
# ifndef _KRB5_INIT_CONTEXT_H_
# define _KRB5_INIT_CONTEXT_H_
2005-09-17 05:11:50 +04:00
struct smb_krb5_context {
2008-08-01 21:29:08 +04:00
krb5_context krb5_context ;
2005-09-17 05:11:50 +04:00
krb5_log_facility * logf ;
2010-10-11 09:53:08 +04:00
struct tevent_context * current_ev ;
2005-09-17 05:11:50 +04:00
} ;
2008-12-29 22:24:57 +03:00
struct tevent_context ;
2007-12-02 22:56:26 +03:00
struct loadparm_context ;
2010-01-31 21:28:04 +03:00
krb5_error_code
smb_krb5_init_context_basic ( TALLOC_CTX * tmp_ctx ,
struct loadparm_context * lp_ctx ,
krb5_context * _krb5_context ) ;
2008-12-29 22:24:57 +03:00
krb5_error_code smb_krb5_init_context ( void * parent_ctx , struct tevent_context * ev ,
2007-12-02 22:56:26 +03:00
struct loadparm_context * lp_ctx ,
2005-09-17 05:11:50 +04:00
struct smb_krb5_context * * smb_krb5_context ) ;
2006-11-07 09:59:56 +03:00
krb5_error_code smb_krb5_send_and_recv_func ( krb5_context context ,
void * data ,
krb5_krbhst_info * hi ,
2008-08-01 13:17:48 +04:00
time_t timeout ,
2006-11-07 09:59:56 +03:00
const krb5_data * send_buf ,
krb5_data * recv_buf ) ;
2011-03-19 02:44:56 +03:00
# endif /* _KRB5_INIT_CONTEXT_H_ */