summaryrefslogtreecommitdiffstats
path: root/src/providers/ipa/ipa_id.h
diff options
context:
space:
mode:
authorJan Zeleny <jzeleny@redhat.com>2011-10-12 09:30:53 -0400
committerStephen Gallagher <sgallagh@redhat.com>2011-11-23 14:19:53 -0500
commit8b1f2574ce7a964965a18ab047ab09c4694380c4 (patch)
treeb9fe7bd67c27833a259ba42fcf8de55f08fedabf /src/providers/ipa/ipa_id.h
parente526b608657f229f7486b3aa8c53b0f2c53b42b1 (diff)
downloadsssd-8b1f2574ce7a964965a18ab047ab09c4694380c4.tar.gz
sssd-8b1f2574ce7a964965a18ab047ab09c4694380c4.tar.xz
sssd-8b1f2574ce7a964965a18ab047ab09c4694380c4.zip
Added IPA account info handler
Currently it is only handling netgroups by itself, other requests are forwarded to LDAP provider.
Diffstat (limited to 'src/providers/ipa/ipa_id.h')
-rw-r--r--src/providers/ipa/ipa_id.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/providers/ipa/ipa_id.h b/src/providers/ipa/ipa_id.h
new file mode 100644
index 000000000..aa2dfe7fd
--- /dev/null
+++ b/src/providers/ipa/ipa_id.h
@@ -0,0 +1,48 @@
+/*
+ SSSD
+
+ IPA Identity Backend Module
+
+ Authors:
+ Jan Zeleny <jzeleny@redhat.com>
+
+ Copyright (C) 2011 Red Hat
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+
+#ifndef _IPA_ID_H_
+#define _IPA_ID_H_
+
+#include "providers/ldap/ldap_common.h"
+#include "providers/ipa/ipa_common.h"
+#include "providers/ldap/sdap.h"
+
+void ipa_account_info_handler(struct be_req *breq);
+struct tevent_req *ipa_get_netgroups_send(TALLOC_CTX *memctx,
+ struct tevent_context *ev,
+ struct sysdb_ctx *sysdb,
+ struct sdap_options *opts,
+ struct ipa_options *ipa_options,
+ struct sdap_handle *sh,
+ const char **attrs,
+ const char *filter,
+ int timeout);
+
+int ipa_get_netgroups_recv(struct tevent_req *req,
+ TALLOC_CTX *mem_ctx,
+ size_t *reply_count,
+ struct sysdb_attrs ***reply);
+#endif