Module: sip-router
Branch: janakj/ldap
Commit: 870ae982996067ac14572f87f82e4ea21597b9c3
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=870ae98…
Author: Jan Janak <jan(a)iptel.org>
Committer: Jan Janak <jan(a)iptel.org>
Date: Wed Jun 25 08:12:06 2008 +0000
- updated with comments received from Victor Pascual
---
modules/db_ldap/standards.txt | 36 ++++++++++++++++++++++++++++--------
1 files changed, 28 insertions(+), 8 deletions(-)
diff --git a/modules/db_ldap/standards.txt b/modules/db_ldap/standards.txt
index e24244d..7bfeb8b 100644
--- a/modules/db_ldap/standards.txt
+++ b/modules/db_ldap/standards.txt
@@ -3,25 +3,45 @@ List of relevant standards and RFCs
RFC2307: An Approach for Using LDAP as a Network Information Service
+ This document is experimental and based on RFC2251, which has been obsoleted
+ by RFC 4510, RFC 4511, RFC 4513, RFC 4512 and updated by RFC 3377 and RFC
+ 3771. Anyhow, AFAIK RFC 2307 is not obsoleted.
+
RFC2256: A summary of the X.500(96) user Schema for use with LDAPv3
- This rfc contains a collection of attribute types and object
- classes collected from various ITU documents. Attribute types
- such as objectClass or cn are defined here.
+
+ This rfc contains a collection of attribute types and object classes
+ collected from various ITU documents. Attribute types such as objectClass or
+ cn are defined here.
+
+ This document has been obsoleted by RFC 4510 and updated by RFC 4512, RFC
+ 4517 and RFC 4519.
+
RFC2587: Internet X.509 Public Key Infrastructure LDAPv2 Schema
+ This document has been obsoleted by RFC 4523.
+
+
RFC1274: The COSINE and Internet X.500 Schema
+ This document has been obsoleted by RFC 4524.
+
RFC2798: Definition of the inetOrgPerson LDAP Object Class
+ This document has been updated by RFC 3698, RFC 4519 and RFC 4524.
+
RFC4515: Lightweight Directory Access Protocol (LDAP): String Representation
of Search Filters
RFC4530: LDAP entryUUID Operational Attribute
- This RFC defines the entryUUID operational attribute which can be
- used by the server to assign unique identifiers to objects in the
- directory. Such identifiers can be used to identify the object even
- when the dn of the object changes. Unfortunately the entryUUID attribute
- cannot by modified by the user and thus it is not directly usable for us.
+
+ This RFC defines the entryUUID operational attribute which can be used by
+ the server to assign unique identifiers to objects in the directory. Such
+ identifiers can be used to identify the object even when the dn of the
+ object changes. Unfortunately the entryUUID attribute cannot by modified by
+ the user and thus it is not directly usable for us.
RFC2252 LDAPv3: Attribute Syntax Definitions
+
+ This document has been obsoleted by RFC 4510, RFC 4517, RFC 4523, RFC 4512
+ and updated by RFC 3377
Module: sip-router
Branch: janakj/ldap
Commit: 49db0edd28ee8889cd918fd2f0a85fbb4d090af2
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=49db0ed…
Author: Jan Janak <jan(a)iptel.org>
Committer: Jan Janak <jan(a)iptel.org>
Date: Thu Jun 5 08:06:43 2008 +0000
- simple authentication is done
---
modules/db_ldap/todo.txt | 12 ++++++++----
1 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/modules/db_ldap/todo.txt b/modules/db_ldap/todo.txt
index 8a82bde..20f230b 100644
--- a/modules/db_ldap/todo.txt
+++ b/modules/db_ldap/todo.txt
@@ -1,10 +1,14 @@
-* Authentication Support
+X Simple Authentication
+
+ Implement support for simple LDAP authentication with username and
+ password. This will take a change in the URI parser because the one provided
+ by libldap (which we use to parse the URI right now) does not support
+ embedded usernames and passwords in the URI.
+
+* SASL Authentication Support
The driver supports no authentication method at the moment, we should
include support for simple authentication at least, but better SASL.
- This will take a change in the URI parser because the one provided
- by libldap (which we use to parse the URI right now) does not support
- embedded usernames and passwords in the URI.
* TLS/SSL Support
Module: sip-router
Branch: janakj/ldap
Commit: a55a847eb2e376c36347e9e35a36205abf560b9f
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=a55a847…
Author: Jan Janak <jan(a)iptel.org>
Committer: Jan Janak <jan(a)iptel.org>
Date: Fri May 23 15:06:45 2008 +0000
- fixed wrong comment
---
modules/db_ldap/ld_con.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/db_ldap/ld_con.c b/modules/db_ldap/ld_con.c
index 6691768..fb6a763 100644
--- a/modules/db_ldap/ld_con.c
+++ b/modules/db_ldap/ld_con.c
@@ -106,7 +106,7 @@ int ld_con(db_con_t* con)
DBG("ldap: Preparing new connection to %s\n", luri->uri);
- /* Put the newly created postgres connection into the pool */
+ /* Put the newly created LDAP connection into the pool */
db_pool_put((struct db_pool_entry*)lcon);
DBG("ldap: Connection stored in connection pool\n");