summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-09-09 04:14:19 +0000
committerGerald Carter <jerry@samba.org>2003-09-09 04:14:19 +0000
commit7f438c3b9e8913a7836b4851ef7c40a7b97a986d (patch)
treed2fdfbca7af359deeb260acd4b6955b19c55b85c /source3/include
parent4093bf7ff8c8861cf7b941945ede53a8ec5bb6c8 (diff)
downloadsamba-7f438c3b9e8913a7836b4851ef7c40a7b97a986d.tar.gz
samba-7f438c3b9e8913a7836b4851ef7c40a7b97a986d.tar.bz2
samba-7f438c3b9e8913a7836b4851ef7c40a7b97a986d.zip
removing unused files
(This used to be commit 1a9145015d4b2ee7e7399099760cda13d619e740)
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/smb_ldap.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/source3/include/smb_ldap.h b/source3/include/smb_ldap.h
deleted file mode 100644
index 1a30b853e7..0000000000
--- a/source3/include/smb_ldap.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- Unix SMB/CIFS implementation.
- LDAP protocol helper functions for SAMBA
- Copyright (C) Jean François Micouleau 1998
- Copyright (C) Gerald Carter 2001
- Copyright (C) Shahms King 2001
- Copyright (C) Andrew Bartlett 2002
- Copyright (C) Stefan (metze) Metzmacher 2002
- Copyright (C) Jim McDonough 2003
-
- 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.
-
-*/
-
-#ifndef SMB_LDAP_H
-#define SMB_LDAP_H
-
-#ifdef HAVE_LDAP
-
-#include <lber.h>
-#include <ldap.h>
-
-struct smb_ldap_privates {
-
- /* Former statics */
- LDAP *ldap_struct;
- LDAPMessage *result;
- LDAPMessage *entry;
- int index;
-
- time_t last_ping;
- /* retrive-once info */
- const char *uri;
-
- BOOL permit_non_unix_accounts;
-
- uint32 low_nua_rid;
- uint32 high_nua_rid;
-
- char *bind_dn;
- char *bind_secret;
-
- struct smb_ldap_privates *next;
-};
-
-#endif
-#endif