diff options
| author | Rich Megginson <rmeggins@redhat.com> | 2008-12-02 15:29:31 +0000 |
|---|---|---|
| committer | Rich Megginson <rmeggins@redhat.com> | 2008-12-02 15:29:31 +0000 |
| commit | da60a75c5fabda105b941751f6b0115ff734f3f9 (patch) | |
| tree | d994a5046bdba6d3297fc250d7a13bd5fb4ec116 /ldap/servers/slapd/libglobs.c | |
| parent | 76bb2234d64962399a6070651eede8f85f0d7f23 (diff) | |
| download | ds-da60a75c5fabda105b941751f6b0115ff734f3f9.tar.gz ds-da60a75c5fabda105b941751f6b0115ff734f3f9.tar.xz ds-da60a75c5fabda105b941751f6b0115ff734f3f9.zip | |
Resolves: bug 469261
Bug Description: Support server-to-server SASL - console chaining, server cleanup
Reviewed by: nkinder (Thanks!)
Fix Description: There are two sets of diffs here. The first set adds tls, gssapi, and digest to the chaining database (aka database link) panels in the console. I had to add support for revert to some of the code to make the Reset button work without having to retrieve the values from the server each time. We already store the original values locally in the _origModel - I added code to allow the use of that in the Reset button.
The second set of diffs is for the server.
1) I had to add support for "SIMPLE" for bindMechanism - this translates to LDAP_SASL_SIMPLE for the actual mechanism. This value is NULL, so I had to add handling for NULL values in the cb config code (slapi_ch_* work fine with NULL values).
2) Added some more debugging/tracing code
3) The server to server SSL code would only work if the server were configured to be an SSL server. But for the server to be an SSL client, it only needs NSS initialized and to have the CA cert. It also needs to configured some of the SSL settings and install the correct policy. I changed the server code to do this.
Platforms tested: RHEL5
Flag Day: no
Doc impact: Yes
Diffstat (limited to 'ldap/servers/slapd/libglobs.c')
| -rw-r--r-- | ldap/servers/slapd/libglobs.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ldap/servers/slapd/libglobs.c b/ldap/servers/slapd/libglobs.c index dac93464..84d3a95c 100644 --- a/ldap/servers/slapd/libglobs.c +++ b/ldap/servers/slapd/libglobs.c @@ -1036,9 +1036,6 @@ get_entry_point( int ep_name, caddr_t *ep_addr ) case ENTRY_POINT_DISCONNECT_SERVER: *ep_addr = sep->sep_disconnect_server; break; - case ENTRY_POINT_SLAPD_SSL_CLIENT_INIT: - *ep_addr = sep->sep_slapd_SSL_client_init; - break; case ENTRY_POINT_SLAPD_SSL_INIT: *ep_addr = sep->sep_slapd_ssl_init; break; |
