From: Andreas Schneider Date: Fri, 10 Jun 2016 09:10:50 +0000 (+0200) Subject: s4-kdc: Move definitions to kdc-server.h X-Git-Tag: tdb-1.3.10~792 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=13661b6fb0806c871d858716394a85c0d3936ca0;p=thirdparty%2Fsamba.git s4-kdc: Move definitions to kdc-server.h Signed-off-by: Andreas Schneider Reviewed-by: Jeremy Allison --- diff --git a/source4/kdc/kdc-glue.h b/source4/kdc/kdc-glue.h index 7ba4bd3bfcb..88e7463348e 100644 --- a/source4/kdc/kdc-glue.h +++ b/source4/kdc/kdc-glue.h @@ -29,28 +29,10 @@ #include #include #include "kdc/samba_kdc.h" +#include "kdc/kdc-server.h" struct tsocket_address; -/* - top level context structure for the kdc server -*/ -struct kdc_server { - struct task_server *task; - struct smb_krb5_context *smb_krb5_context; - struct samba_kdc_base_context *base_ctx; - struct ldb_context *samdb; - bool am_rodc; - uint32_t proxy_timeout; - void *private_data; -}; - -typedef enum kdc_code_e { - KDC_OK = 0, - KDC_ERROR, - KDC_PROXY_REQUEST -} kdc_code; - kdc_code kpasswdd_process(struct kdc_server *kdc, TALLOC_CTX *mem_ctx, DATA_BLOB *input, diff --git a/source4/kdc/kdc-heimdal.c b/source4/kdc/kdc-heimdal.c index 2a190105dff..c3d857a6cd1 100644 --- a/source4/kdc/kdc-heimdal.c +++ b/source4/kdc/kdc-heimdal.c @@ -31,6 +31,7 @@ #include "lib/stream/packet.h" #include "lib/socket/netif.h" #include "param/param.h" +#include "kdc/kdc-server.h" #include "kdc/kdc-glue.h" #include "kdc/pac-glue.h" #include "dsdb/samdb/samdb.h" diff --git a/source4/kdc/kdc-server.h b/source4/kdc/kdc-server.h new file mode 100644 index 00000000000..952235f4828 --- /dev/null +++ b/source4/kdc/kdc-server.h @@ -0,0 +1,50 @@ +/* + Unix SMB/CIFS implementation. + + KDC related functions + + Copyright (c) 2005-2008 Andrew Bartlett + Copyright (c) 2005 Andrew Tridgell + Copyright (c) 2005 Stefan Metzmacher + + 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 3 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, see . +*/ + +#ifndef _KDC_SERVER_H +#define _KDC_SERVER_H + +#include "system/kerberos.h" + +struct tsocket_address; + +/* + * Context structure for the kdc server + */ +struct kdc_server { + struct task_server *task; + struct smb_krb5_context *smb_krb5_context; + struct samba_kdc_base_context *base_ctx; + struct ldb_context *samdb; + bool am_rodc; + uint32_t proxy_timeout; + void *private_data; +}; + +typedef enum kdc_code_e { + KDC_OK = 0, + KDC_ERROR, + KDC_PROXY_REQUEST +} kdc_code; + +#endif /* _KDC_SERVER_H */ diff --git a/source4/kdc/kpasswd-heimdal.c b/source4/kdc/kpasswd-heimdal.c index 6c499aa27c6..e61dfd42a16 100644 --- a/source4/kdc/kpasswd-heimdal.c +++ b/source4/kdc/kpasswd-heimdal.c @@ -29,6 +29,7 @@ #include "../lib/util/util_ldb.h" #include "libcli/security/security.h" #include "param/param.h" +#include "kdc/kdc-server.h" #include "kdc/kdc-glue.h" #include "dsdb/common/util.h" #include "kdc/kpasswd_glue.h" diff --git a/source4/kdc/proxy-heimdal.c b/source4/kdc/proxy-heimdal.c index 324bfb8e2e1..aca85d7b81b 100644 --- a/source4/kdc/proxy-heimdal.c +++ b/source4/kdc/proxy-heimdal.c @@ -27,6 +27,7 @@ #include "libcli/util/tstream.h" #include "lib/util/tevent_ntstatus.h" #include "lib/stream/packet.h" +#include "kdc/kdc-server.h" #include "kdc/kdc-glue.h" #include "dsdb/samdb/samdb.h" #include "libcli/composite/composite.h"