diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2008-11-03 09:45:45 -0500 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2008-11-03 10:12:29 -0500 |
commit | 8b8210c79b297b87e56d068e8839f7fe6755ab15 (patch) | |
tree | 5f3799bfe0369a5885d8f6d14bdafaa17730a7ab /server/dbus/sssd_dbus_private.h | |
parent | 0396ffe802dc32dc48c9d0ac3b22efc8217a98b3 (diff) | |
download | sssd-8b8210c79b297b87e56d068e8839f7fe6755ab15.tar.gz sssd-8b8210c79b297b87e56d068e8839f7fe6755ab15.tar.bz2 sssd-8b8210c79b297b87e56d068e8839f7fe6755ab15.zip |
Refactoring dbus code. Also corrected one talloc allocation mistake for sbus_dispatch.
Diffstat (limited to 'server/dbus/sssd_dbus_private.h')
-rw-r--r-- | server/dbus/sssd_dbus_private.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/dbus/sssd_dbus_private.h b/server/dbus/sssd_dbus_private.h index ea1b719b..d102c8c9 100644 --- a/server/dbus/sssd_dbus_private.h +++ b/server/dbus/sssd_dbus_private.h @@ -1,14 +1,14 @@ #ifndef _SSSD_DBUS_PRIVATE_H_ #define _SSSD_DBUS_PRIVATE_H_ -int sssd_add_dbus_connection(TALLOC_CTX *ctx, +int sbus_add_connection(TALLOC_CTX *ctx, struct event_context *ev, DBusConnection *dbus_conn, - struct dbus_connection_toplevel_context **dct_ctx, + struct sbus_conn_ctx **dct_ctx, int connection_type); struct timeval _dbus_timeout_get_interval_tv(int interval); -void remove_watch(DBusWatch *watch, void *data); -void remove_timeout(DBusTimeout *timeout, void *data); +void sbus_remove_watch(DBusWatch *watch, void *data); +void sbus_remove_timeout(DBusTimeout *timeout, void *data); #endif /* _SSSD_DBUS_PRIVATE_H_ */ |