summaryrefslogtreecommitdiffstats
path: root/src/sbus/sssd_dbus_private.h
diff options
context:
space:
mode:
authorPavel Březina <pbrezina@redhat.com>2015-05-20 14:14:53 +0200
committerJakub Hrozek <jhrozek@redhat.com>2015-06-18 16:44:07 +0200
commitf7adbb15dbdcb79e291f7cf361a400ce25f7b382 (patch)
tree44581d061f7c2ee1a1e00e24820c1be88654b990 /src/sbus/sssd_dbus_private.h
parentc5184e9eeb0fd0bc4749677d2f74256515199b46 (diff)
downloadsssd-f7adbb15dbdcb79e291f7cf361a400ce25f7b382.tar.gz
sssd-f7adbb15dbdcb79e291f7cf361a400ce25f7b382.tar.xz
sssd-f7adbb15dbdcb79e291f7cf361a400ce25f7b382.zip
SBUS: Add support for <node /> in introspection
Reviewed-by: Jakub Hrozek <jhrozek@redhat.com>
Diffstat (limited to 'src/sbus/sssd_dbus_private.h')
-rw-r--r--src/sbus/sssd_dbus_private.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/sbus/sssd_dbus_private.h b/src/sbus/sssd_dbus_private.h
index 24b6bec18..0493e1536 100644
--- a/src/sbus/sssd_dbus_private.h
+++ b/src/sbus/sssd_dbus_private.h
@@ -48,6 +48,7 @@ struct sbus_connection {
int disconnect;
hash_table_t *managed_paths;
+ hash_table_t *nodes_fns;
/* reconnect settings */
int retries;
@@ -129,6 +130,16 @@ sbus_opath_hash_lookup_supported(TALLOC_CTX *mem_ctx,
const char *object_path,
struct sbus_interface_list **_list);
+errno_t
+sbus_nodes_hash_init(TALLOC_CTX *mem_ctx,
+ struct sbus_connection *conn,
+ hash_table_t **_table);
+
+const char **
+sbus_nodes_hash_lookup(TALLOC_CTX *mem_ctx,
+ hash_table_t *table,
+ const char *object_path);
+
void
sbus_request_invoke_or_finish(struct sbus_request *dbus_req,
sbus_msg_handler_fn handler_fn,