/usr/include/GNUstep/NGLdap/NGLdapConnection.h is in libsope-dev 2.2.17-1build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 | /*
Copyright (C) 2000-2007 SKYRIX Software AG
This file is part of SOPE.
SOPE is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.
SOPE 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 Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public
License along with SOPE; see the file COPYING. If not, write to the
Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
*/
#ifndef __NGLdapConnection_H__
#define __NGLdapConnection_H__
#import <Foundation/NSObject.h>
#import <Foundation/NSDate.h>
#define LDAP_DEPRECATED 1
#include <ldap.h>
@class NSString, NSArray, NSEnumerator;
@class EOQualifier;
@class NGLdapEntry;
@interface NGLdapConnection : NSObject
{
LDAP *handle;
NSString *hostName;
int port;
unsigned int sizeLimit;
NSTimeInterval timeLimit;
NSTimeInterval cacheTimeout;
long cacheMaxMemory; /* in bytes */
BOOL isCacheEnabled;
struct {
BOOL isBound:1;
} flags;
}
- (id)initWithHostName:(NSString *)_hostName port:(int)_port; // designated init
- (id)initWithHostName:(NSString *)_hostName;
/* settings */
- (NSString *)hostName;
- (int)port;
/* encryption */
- (BOOL)useSSL;
- (BOOL)startTLS;
/* binding */
- (BOOL)isBound;
- (void)unbind;
- (BOOL)bindWithMethod:(NSString *)_method
binddn:(NSString *)_login credentials:(NSString *)_cred;
#ifdef LDAP_CONTROL_PASSWORDPOLICYREQUEST
- (BOOL) bindWithMethod: (NSString *) _method
binddn: (NSString *) _login
credentials: (NSString *) _cred
perr: (LDAPPasswordPolicyError *) _perr
expire: (int *) _expire
grace: (int *) _grace;
- (BOOL) changePasswordAtDn: (NSString *) _dn
oldPassword: (NSString *) _oldPassword
newPassword: (NSString *) _newPassword
perr: (LDAPPasswordPolicyError *) _perr;
#endif
- (BOOL) changeADPasswordAtDn: (NSString *) _dn
oldPassword: (NSString *) _oldPassword
newPassword: (NSString *) _newPassword;
/* query parameters */
- (void)setQueryTimeLimit:(NSTimeInterval)_timeLimit;
- (NSTimeInterval)queryTimeLimit;
- (void)setQuerySizeLimit:(unsigned int)_timeLimit;
- (unsigned int )querySizeLimit;
/* running queries */
- (NSEnumerator *)flatSearchAtBaseDN:(NSString *)_base
qualifier:(EOQualifier *)_q
attributes:(NSArray *)_attributes;
- (NSEnumerator *)deepSearchAtBaseDN:(NSString *)_base
qualifier:(EOQualifier *)_q
attributes:(NSArray *)_attributes;
- (NSEnumerator *)baseSearchAtBaseDN:(NSString *)_base
qualifier:(EOQualifier *)_q
attributes:(NSArray *)_attributes;
- (NGLdapEntry *)entryAtDN:(NSString *)_dn attributes:(NSArray *)_attrs;
/* cache */
- (void)setCacheTimeout:(NSTimeInterval)_to;
- (NSTimeInterval)cacheTimeout;
- (void)setCacheMaxMemoryUsage:(long)_maxMem;
- (long)cacheMaxMemoryUsage;
- (void)setUseCache:(BOOL)_flag;
- (BOOL)doesUseCache;
- (void)flushCache;
- (void)destroyCache;
- (void)cacheForgetEntryWithDN:(NSString *)_dn;
/* modifications */
- (BOOL)addEntry:(NGLdapEntry *)_entry;
- (BOOL)removeEntryWithDN:(NSString *)_dn;
- (BOOL)modifyEntryWithDN:(NSString *)_dn changes:(NSArray *)_mods;
/* root DSE */
- (NGLdapEntry *)schemaEntry;
- (NGLdapEntry *)rootDSE;
- (NGLdapEntry *)rootDSEWithAttributes: (NSArray *) attributes;
- (NGLdapEntry *)configEntry;
- (NSArray *)namingContexts;
- (BOOL) isADCompatible;
@end
@interface NGLdapConnection(PlainPasswordCheck)
/* specialized password check routine */
- (NSString *)dnForLogin:(NSString *)_login baseDN:(NSString *)_baseDN;
+ (BOOL)checkPassword:(NSString *)_pwd ofLogin:(NSString *)_login
atBaseDN:(NSString *)_baseDN
onHost:(NSString *)_hostName port:(int)_port;
@end
#endif /* __NGLdapConnection_H__ */
|