From 7b18fcd84799e0b9e1c014af575ca292f905d0a3 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 11 May 2005 04:49:18 +0000 Subject: r6725: the beginnings of a cldap server (This used to be commit e51e0dffa8f8bff9bd1535751e805b548b6c6d7f) --- source4/cldap_server/cldap_server.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 source4/cldap_server/cldap_server.h (limited to 'source4/cldap_server/cldap_server.h') diff --git a/source4/cldap_server/cldap_server.h b/source4/cldap_server/cldap_server.h new file mode 100644 index 0000000000..f110d05d16 --- /dev/null +++ b/source4/cldap_server/cldap_server.h @@ -0,0 +1,30 @@ +/* + Unix SMB/CIFS implementation. + + CLDAP server structures + + Copyright (C) Andrew Tridgell 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. +*/ + +#include "libcli/cldap/cldap.h" + +/* + top level context structure for the cldap server +*/ +struct cldapd_server { + struct task_server *task; +}; -- cgit From 2279d1ebfb0a750d92ca0c4a9dc9803c35c845d9 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 12 May 2005 08:28:07 +0000 Subject: r6747: first working version of cldapd server. It is missing 'sites' support, and filling in some of the returned parameters is quite rough, but it seems to work OK (This used to be commit e564e3e596915414fad07c94f7ea8a0d9c3a1140) --- source4/cldap_server/cldap_server.h | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/cldap_server/cldap_server.h') diff --git a/source4/cldap_server/cldap_server.h b/source4/cldap_server/cldap_server.h index f110d05d16..e3d7c06ab3 100644 --- a/source4/cldap_server/cldap_server.h +++ b/source4/cldap_server/cldap_server.h @@ -27,4 +27,5 @@ */ struct cldapd_server { struct task_server *task; + const char *dns_domain; }; -- cgit From 13a3fdf933c3ebdc0fd5bc0f3460d201a7c6b229 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 18 May 2005 04:18:19 +0000 Subject: r6876: - fixed a memory leak in the cldap server - keep the samdb open between requests (This used to be commit ee75a8353b0dab579abf0e675395d796f1c39746) --- source4/cldap_server/cldap_server.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/cldap_server/cldap_server.h') diff --git a/source4/cldap_server/cldap_server.h b/source4/cldap_server/cldap_server.h index e3d7c06ab3..003835456d 100644 --- a/source4/cldap_server/cldap_server.h +++ b/source4/cldap_server/cldap_server.h @@ -27,5 +27,5 @@ */ struct cldapd_server { struct task_server *task; - const char *dns_domain; + struct ldb_context *samctx; }; -- cgit From f8fdbc967c774a1d62f87a534e4990d83ecc6b67 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 7 Mar 2006 14:34:32 +0000 Subject: r13944: Yet another round of splitups. (This used to be commit f87debeb12cebd734b47314554ab671c9e06237e) --- source4/cldap_server/cldap_server.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/cldap_server/cldap_server.h') diff --git a/source4/cldap_server/cldap_server.h b/source4/cldap_server/cldap_server.h index 003835456d..a83b11d539 100644 --- a/source4/cldap_server/cldap_server.h +++ b/source4/cldap_server/cldap_server.h @@ -29,3 +29,5 @@ struct cldapd_server { struct task_server *task; struct ldb_context *samctx; }; + +#include "cldap_server/proto.h" -- cgit From 0479a2f1cbae51fcd8dbdc3c148c808421fb4d25 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 10 Jul 2007 02:07:03 +0000 Subject: r23792: convert Samba4 to GPLv3 There are still a few tidyups of old FSF addresses to come (in both s3 and s4). More commits soon. (This used to be commit fcf38a38ac691abd0fa51b89dc951a08e89fdafa) --- source4/cldap_server/cldap_server.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'source4/cldap_server/cldap_server.h') diff --git a/source4/cldap_server/cldap_server.h b/source4/cldap_server/cldap_server.h index a83b11d539..e683d2b83f 100644 --- a/source4/cldap_server/cldap_server.h +++ b/source4/cldap_server/cldap_server.h @@ -7,7 +7,7 @@ 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 + 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, @@ -16,8 +16,7 @@ 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. + along with this program. If not, see . */ #include "libcli/cldap/cldap.h" -- cgit From 2e3cf7843f426646b530fdecf4cccae7d4a67754 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 28 Mar 2008 09:39:03 +0100 Subject: cldap_server: fix compiler warning metze (This used to be commit a6cd4e7509dbd1aef4873c7c0eef2a13bc907880) --- source4/cldap_server/cldap_server.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/cldap_server/cldap_server.h') diff --git a/source4/cldap_server/cldap_server.h b/source4/cldap_server/cldap_server.h index e683d2b83f..da2bd20050 100644 --- a/source4/cldap_server/cldap_server.h +++ b/source4/cldap_server/cldap_server.h @@ -29,4 +29,6 @@ struct cldapd_server { struct ldb_context *samctx; }; +struct ldap_SearchRequest; + #include "cldap_server/proto.h" -- cgit