diff options
| author | Jakub Hrozek <jhrozek@redhat.com> | 2013-12-03 20:45:44 +0100 |
|---|---|---|
| committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-12-19 17:39:56 +0100 |
| commit | 72ae534f5aef6d2e5d3f2f51299aede5abf9687e (patch) | |
| tree | f95e390ebd6e674415418a127a7fbed0542ffdbb /src/providers/ad/ad_common.h | |
| parent | 008e1ee835602023891ac45408483d87f41e4d5c (diff) | |
| download | sssd-72ae534f5aef6d2e5d3f2f51299aede5abf9687e.tar.gz sssd-72ae534f5aef6d2e5d3f2f51299aede5abf9687e.tar.xz sssd-72ae534f5aef6d2e5d3f2f51299aede5abf9687e.zip | |
AD: Add a utility function to create list of connections
ad_id.c and ad_access.c used the same block of code. With the upcoming
option to disable GC lookups, we should unify the code in a function to
avoid breaking one of the code paths.
The same applies for the LDAP connection to the trusted AD DC.
Includes a unit test.
Diffstat (limited to 'src/providers/ad/ad_common.h')
| -rw-r--r-- | src/providers/ad/ad_common.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/providers/ad/ad_common.h b/src/providers/ad/ad_common.h index b8b73c042..ed5b8584d 100644 --- a/src/providers/ad/ad_common.h +++ b/src/providers/ad/ad_common.h @@ -115,6 +115,13 @@ ad_get_dyndns_options(struct be_ctx *be_ctx, struct ad_id_ctx * ad_id_ctx_init(struct ad_options *ad_opts, struct be_ctx *bectx); +struct sdap_id_conn_ctx ** +ad_gc_conn_list(TALLOC_CTX *mem_ctx, struct ad_id_ctx *ad_ctx, + struct sss_domain_info *dom); + +struct sdap_id_conn_ctx * +ad_get_dom_ldap_conn(struct ad_id_ctx *ad_ctx, struct sss_domain_info *dom); + /* AD dynamic DNS updates */ errno_t ad_dyndns_init(struct be_ctx *be_ctx, struct ad_options *ctx); |
