summaryrefslogtreecommitdiff
path: root/src/responder/common/responder.h
diff options
context:
space:
mode:
authorSumit Bose <sbose@redhat.com>2013-05-31 10:52:05 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-06-04 17:24:13 +0200
commit909a86af4eb99f5d311d7136cab78dca535ae304 (patch)
treeecf8477033ec37ab8de6b415fc06eac1c6fb1240 /src/responder/common/responder.h
parent06dad7ed041e90b106475e06d4eb542548d560ed (diff)
downloadsssd-909a86af4eb99f5d311d7136cab78dca535ae304.tar.gz
sssd-909a86af4eb99f5d311d7136cab78dca535ae304.tar.bz2
sssd-909a86af4eb99f5d311d7136cab78dca535ae304.zip
Lookup domains at startup
To make sure that e.g. the short/NetBIOS domain name is available this patch make sure that the responders send a get_domains request to their backends at startup the collect the domain information or read it from the cache if the backend is offline. For completeness I added this to all responders even if they do not need the information at the moment. Fixes https://fedorahosted.org/sssd/ticket/1951
Diffstat (limited to 'src/responder/common/responder.h')
-rw-r--r--src/responder/common/responder.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/responder/common/responder.h b/src/responder/common/responder.h
index 68b4ebb2..5331d5b7 100644
--- a/src/responder/common/responder.h
+++ b/src/responder/common/responder.h
@@ -303,6 +303,10 @@ struct tevent_req *sss_dp_get_domains_send(TALLOC_CTX *mem_ctx,
errno_t sss_dp_get_domains_recv(struct tevent_req *req);
+errno_t schedule_get_domains_task(TALLOC_CTX *mem_ctx,
+ struct tevent_context *ev,
+ struct resp_ctx *rctx);
+
errno_t csv_string_to_uid_array(TALLOC_CTX *mem_ctx, const char *cvs_string,
bool allow_sss_loop,
size_t *_uid_count, uid_t **_uids);