s4:kdc streamline context initialization
[Samba/nascimento.git] / source4 / auth / kerberos / krb5_init_context.h
blobf9e88ceef8e1e8c72b0884247a75cf0a8d20e37b
1 /*
2 Unix SMB/CIFS implementation.
3 simple kerberos5 routines for active directory
4 Copyright (C) Andrew Bartlett 2005
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 struct smb_krb5_context {
21 krb5_context krb5_context;
22 krb5_log_facility *logf;
25 struct tevent_context;
26 struct loadparm_context;
28 krb5_error_code
29 smb_krb5_init_context_basic(TALLOC_CTX *tmp_ctx,
30 struct tevent_context *ev,
31 struct loadparm_context *lp_ctx,
32 krb5_context *_krb5_context);
34 krb5_error_code smb_krb5_init_context(void *parent_ctx, struct tevent_context *ev,
35 struct loadparm_context *lp_ctx,
36 struct smb_krb5_context **smb_krb5_context);
38 krb5_error_code smb_krb5_send_and_recv_func(krb5_context context,
39 void *data,
40 krb5_krbhst_info *hi,
41 time_t timeout,
42 const krb5_data *send_buf,
43 krb5_data *recv_buf);