summaryrefslogtreecommitdiffstats
path: root/src/responder/ifp/ifp_cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/responder/ifp/ifp_cache.h')
-rw-r--r--src/responder/ifp/ifp_cache.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/responder/ifp/ifp_cache.h b/src/responder/ifp/ifp_cache.h
new file mode 100644
index 000000000..56e90bb9c
--- /dev/null
+++ b/src/responder/ifp/ifp_cache.h
@@ -0,0 +1,53 @@
+/*
+ Authors:
+ Pavel Březina <pbrezina@redhat.com>
+
+ Copyright (C) 2015 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 IFP_CACHE_H_
+#define IFP_CACHE_H_
+
+#include "responder/common/responder.h"
+#include "responder/ifp/ifp_iface_generated.h"
+
+/* org.freedesktop-sssd-infopipe.Cache */
+
+enum ifp_cache_type {
+ IFP_CACHE_USER,
+ IFP_CACHE_GROUP
+};
+
+int ifp_cache_list(struct sbus_request *sbus_req,
+ void *data,
+ enum ifp_cache_type type);
+
+int ifp_cache_list_by_domain(struct sbus_request *sbus_req,
+ void *data,
+ const char *domain,
+ enum ifp_cache_type type);
+
+/* org.freedesktop-sssd-infopipe.Cache.Object */
+
+int ifp_cache_object_store(struct sbus_request *sbus_req,
+ struct sss_domain_info *domain,
+ struct ldb_dn *dn);
+
+int ifp_cache_object_remove(struct sbus_request *sbus_req,
+ struct sss_domain_info *domain,
+ struct ldb_dn *dn);
+
+#endif /* IFP_CACHE_H_ */