mirror of
https://github.com/samba-team/samba.git
synced 2025-11-15 16:23:49 +03:00
ideas I have had. When I get a full list of things I want to do to a krb5_context I'll either add gsskrb5_ wrappers, or a way of speicfying the krb5 context per gssapi context. (I want to ensure that the only krb5_context variables created while executing Samba4 are via our wrapper). Andrew Bartlett
30 lines
1.1 KiB
C
30 lines
1.1 KiB
C
/*
|
|
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
|
|
the Free Software Foundation; either version 2 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, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
struct smb_krb5_context {
|
|
krb5_context krb5_context;
|
|
krb5_log_facility *logf;
|
|
};
|
|
|
|
krb5_error_code smb_krb5_init_context(void *parent_ctx,
|
|
struct smb_krb5_context **smb_krb5_context);
|
|
void smb_krb5_free_context(struct smb_krb5_context *smb_krb5_context);
|
|
|