1
0
mirror of https://github.com/samba-team/samba.git synced 2025-10-30 08:23:49 +03:00

r7746: - added TLS support to our ldap server

- this involved changing the buffer handling in the ldap server quite a
  lot, as it didn't handle partial packets at all

- removed completely bogus asn1_object_length() function. You can't
  do that with BER/DER
This commit is contained in:
Andrew Tridgell
2005-06-19 07:21:18 +00:00
committed by Gerald (Jerry) Carter
parent 42d8a1a222
commit fed6f4cc6c
3 changed files with 115 additions and 102 deletions

View File

@@ -73,6 +73,8 @@ struct ldapsrv_connection {
struct ldapsrv_call *calls;
struct ldapsrv_service *service;
struct tls_context *tls;
};
struct ldapsrv_partition;
@@ -103,4 +105,5 @@ struct ldapsrv_service {
struct ldapsrv_partition *rootDSE;
struct ldapsrv_partition *default_partition;
struct ldapsrv_partition *partitions;
struct tls_params *tls_params;
};