winbindd: Give winbindd_ads.c its own header
authorVolker Lendecke <vl@samba.org>
Thu, 11 May 2017 19:38:50 +0000 (21:38 +0200)
committerJeremy Allison <jra@samba.org>
Tue, 16 May 2017 23:47:17 +0000 (01:47 +0200)
Not necessary to compile all of winbind when playing with ads.h

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/winbindd/idmap_ad_nss.c
source3/winbindd/idmap_rfc2307.c
source3/winbindd/winbindd_ads.c
source3/winbindd/winbindd_ads.h [new file with mode: 0644]
source3/winbindd/winbindd_proto.h

index 87c78149656fdbed96452cef6f6bca904816f21a..d65e1e9de8d0dc83ba7cbb8fffd65448dd6141e2 100644 (file)
@@ -28,7 +28,7 @@
 #include "includes.h"
 #include "winbindd.h"
 #include "../libds/common/flags.h"
-#include "ads.h"
+#include "winbindd_ads.h"
 #include "libads/ldap_schema.h"
 #include "nss_info.h"
 #include "idmap.h"
index 8ffa55bf160ab0caedb9918137e08134a0a35fbb..668a7a4e28e5759f55c8411e21972022215e6cab 100644 (file)
@@ -25,7 +25,7 @@
 
 #include "includes.h"
 #include "winbindd.h"
-#include "ads.h"
+#include "winbindd_ads.h"
 #include "idmap.h"
 #include "smbldap.h"
 #include "nsswitch/winbind_client.h"
index d2e1ac42b18ad74ae948013ca639ad1cbd729e3a..c330b9202c887e40bdfd2c3bae0cd1906ab5ea53 100644 (file)
@@ -23,6 +23,7 @@
 
 #include "includes.h"
 #include "winbindd.h"
+#include "winbindd_ads.h"
 #include "rpc_client/rpc_client.h"
 #include "../librpc/gen_ndr/ndr_netlogon_c.h"
 #include "../libds/common/flags.h"
diff --git a/source3/winbindd/winbindd_ads.h b/source3/winbindd/winbindd_ads.h
new file mode 100644 (file)
index 0000000..5f121c8
--- /dev/null
@@ -0,0 +1,33 @@
+/*
+   Unix SMB/CIFS implementation.
+
+   Winbind ADS backend functions
+
+   Copyright (C) Volker Lendecke 2017
+
+   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 <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef __WINBINDD_ADS_H__
+#define __WINBINDD_ADS_H__
+
+
+#include "ads.h"
+
+extern struct winbindd_methods ads_methods;
+
+ADS_STATUS ads_idmap_cached_connection(ADS_STRUCT **adsp,
+                                      const char *dom_name);
+
+#endif
index ebd9b44afa00229de94ec5f269bf2b859bbb67f2..57b363a7bd84034df001eeec87b480d9219487c1 100644 (file)
@@ -23,8 +23,6 @@
 #ifndef _WINBINDD_PROTO_H_
 #define _WINBINDD_PROTO_H_
 
-#include "ads.h"
-
 /* The following definitions come from winbindd/winbindd.c  */
 struct messaging_context *winbind_messaging_context(void);
 struct imessaging_context *winbind_imessaging_context(void);
@@ -956,9 +954,6 @@ NTSTATUS open_internal_lsa_conn(TALLOC_CTX *mem_ctx,
                                struct rpc_pipe_client **lsa_pipe,
                                struct policy_handle *lsa_hnd);
 
-/* The following definitions come from winbindd/winbindd_ads.c  */
-ADS_STATUS ads_idmap_cached_connection(ADS_STRUCT **adsp, const char *dom_name);
-
 /* The following definitions come from winbindd/winbindd_irpc.c  */
 NTSTATUS wb_irpc_register(void);