From 124083f5801312aeef6f97402dba181d98eb708c Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Mon, 15 Dec 2008 10:12:43 -0500 Subject: Disconnected client SBUS connections would delete the master set of sbus_method_ctx entries, meaning that the next connection to attempt to disconnect would receive a segmentation fault also trying to delete them. They are now talloc_reference()-ed to their connection context and talloc_unlink()-ed upon deletion. I have also modified the sbus_new_server() call to take a reference to an sbus_srv_ctx object as a return argument, so that the calling function can keep track of the SBUS server context if it so chooses. --- server/sbus/sssd_dbus.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'server/sbus/sssd_dbus.h') diff --git a/server/sbus/sssd_dbus.h b/server/sbus/sssd_dbus.h index 75567ac..3984699 100644 --- a/server/sbus/sssd_dbus.h +++ b/server/sbus/sssd_dbus.h @@ -23,6 +23,7 @@ #define _SSSD_DBUS_H_ struct sbus_conn_ctx; +struct sbus_srv_ctx; #include "dbus/dbus.h" @@ -67,7 +68,7 @@ struct sbus_message_handler_ctx { /* Server Functions */ int sbus_new_server(struct event_context *ev, struct sbus_method_ctx *ctx, - const char *address, + struct sbus_srv_ctx **server_ctx, const char *address, sbus_server_conn_init_fn init_fn, void *init_pvt_data); /* Connection Functions */ -- cgit