summaryrefslogtreecommitdiffstats
path: root/server/infopipe/infopipe_private.h
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2009-07-20 13:57:04 -0400
committerSimo Sorce <ssorce@redhat.com>2009-07-20 14:29:43 -0400
commitbb4570d2f3ed0c9b780010623de82c4c76d15a2c (patch)
tree57d9e2f20e02bd73525e1c0cbc0d48f422de7834 /server/infopipe/infopipe_private.h
parenta4aa051dbf8dd6087307186bb86d0f30154a29b3 (diff)
downloadsssd-bb4570d2f3ed0c9b780010623de82c4c76d15a2c.tar.gz
sssd-bb4570d2f3ed0c9b780010623de82c4c76d15a2c.tar.xz
sssd-bb4570d2f3ed0c9b780010623de82c4c76d15a2c.zip
Remove unused InfoPipe and PolicyKit code
Diffstat (limited to 'server/infopipe/infopipe_private.h')
-rw-r--r--server/infopipe/infopipe_private.h98
1 files changed, 0 insertions, 98 deletions
diff --git a/server/infopipe/infopipe_private.h b/server/infopipe/infopipe_private.h
deleted file mode 100644
index 7317f7a62..000000000
--- a/server/infopipe/infopipe_private.h
+++ /dev/null
@@ -1,98 +0,0 @@
-/*
- SSSD
-
- InfoPipe
-
- Copyright (C) Stephen Gallagher <sgallagh@redhat.com> 2009
-
- 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 INFOPIPE_PRIVATE_H_
-#define INFOPIPE_PRIVATE_H_
-
-struct infp_ctx {
- struct tevent_context *ev;
- struct confdb_ctx *cdb;
- struct service_sbus_ctx *ss_ctx;
- struct sysbus_ctx *sysbus;
- struct sysdb_ctx *sysdb;
- struct sss_domain_info *domains;
- char *introspect_xml;
-
- int cache_timeout;
-};
-
-struct infp_req_ctx {
- struct infp_ctx *infp;
- struct sbus_conn_ctx *sconn;
- DBusMessage *req_message;
- struct sss_domain_info *domain;
- char *caller;
-};
-
-enum infp_object_types {
- INFP_OBJ_TYPE_INVALID = 0,
- INFP_OBJ_TYPE_USER,
- INFP_OBJ_TYPE_GROUP
-};
-int infp_get_object_type(const char *obj);
-
-enum infp_action_types {
- INFP_ACTION_TYPE_INVALID = 0,
- INFP_ACTION_TYPE_READ,
- INFP_ACTION_TYPE_CREATE,
- INFP_ACTION_TYPE_DELETE,
- INFP_ACTION_TYPE_MODIFY,
- INFP_ACTION_TYPE_ADDMEMBER,
- INFP_ACTION_TYPE_REMOVEMEMBER
-};
-int infp_get_action_type(const char *action);
-
-enum infp_attribute_types {
- INFP_ATTR_TYPE_INVALID = 0,
- INFP_ATTR_TYPE_DEFAULTGROUP,
- INFP_ATTR_TYPE_GECOS,
- INFP_ATTR_TYPE_HOMEDIR,
- INFP_ATTR_TYPE_SHELL,
- INFP_ATTR_TYPE_FULLNAME,
- INFP_ATTR_TYPE_LOCALE,
- INFP_ATTR_TYPE_KEYBOARD,
- INFP_ATTR_TYPE_SESSION,
- INFP_ATTR_TYPE_LAST_LOGIN,
- INFP_ATTR_TYPE_USERPIC,
- INFP_ATTR_TYPE_USERID,
- INFP_ATTR_TYPE_GROUPID
-};
-int infp_get_attribute_type(const char *attribute);
-
-int infp_get_user_attr_dbus_type(int attr_type, int *subtype);
-
-bool infp_get_permissions(const char *caller,
- struct sss_domain_info *domain,
- int object_type,
- const char *instance,
- int action_type,
- int action_attribute);
-
-struct sss_domain_info *infp_get_domain_obj(struct infp_ctx *infp, const char *domain_name);
-
-int infp_get_ldb_val_from_dbus(TALLOC_CTX *mem_ctx, DBusMessageIter *iter, struct ldb_val **value, int dbus_type, int subtype);
-
-struct infp_req_ctx *infp_req_init(TALLOC_CTX *mem_ctx, DBusMessage *message, struct sbus_conn_ctx *sconn);
-
-void infp_return_success(struct infp_req_ctx *infp_req);
-void infp_return_failure(struct infp_req_ctx *infp_req, const char *message);
-
-#endif /* INFOPIPE_PRIVATE_H_ */