summaryrefslogtreecommitdiffstats
path: root/src/providers/ipa/ipa_common.h
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2013-06-19 10:50:44 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-06-28 22:22:20 +0200
commitf8a4a5f6240156809e1b5ef03816f673281e3fa0 (patch)
tree4963a9bbe4f56c50093df9f826fa7a268b6fd335 /src/providers/ipa/ipa_common.h
parent59415636c92c6e9764ddc65a85ad61002310519d (diff)
downloadsssd-f8a4a5f6240156809e1b5ef03816f673281e3fa0.tar.gz
sssd-f8a4a5f6240156809e1b5ef03816f673281e3fa0.tar.xz
sssd-f8a4a5f6240156809e1b5ef03816f673281e3fa0.zip
IPA: Initialize server mode ctx if server mode is on
This patch introduces a new structure that holds information about a subdomain and its ad_id_ctx. This structure will be used only in server mode to make it possible to search subdomains with a particular ad_id_ctx. Subtask of: https://fedorahosted.org/sssd/ticket/1962
Diffstat (limited to 'src/providers/ipa/ipa_common.h')
-rw-r--r--src/providers/ipa/ipa_common.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/providers/ipa/ipa_common.h b/src/providers/ipa/ipa_common.h
index 43ccb8e0a..2af20e1de 100644
--- a/src/providers/ipa/ipa_common.h
+++ b/src/providers/ipa/ipa_common.h
@@ -112,9 +112,14 @@ struct ipa_auth_ctx {
struct dp_option *ipa_options;
};
+/* In server mode, each subdomain corresponds to an AD context */
+
struct ipa_id_ctx {
struct sdap_id_ctx *sdap_id_ctx;
struct ipa_options *ipa_options;
+
+ /* Only used with server mode */
+ struct ipa_server_mode_ctx *server_mode;
};
struct ipa_options {