From 66e1cb9e68ba37980f7a90c396950be1587cdcd7 Mon Sep 17 00:00:00 2001 From: "John (J5) Palmieri" Date: Mon, 3 Oct 2005 19:55:56 +0000 Subject: * bus/driver.c (bus_driver_handle_introspect): Add signals to the introspect data. (patch from Daniel P. Berrange ) * bus/dispatch.c (check_existent_ping): Add testcase for Ping * dbus/dbus-connection.c (_dbus_connection_peer_filter, _dbus_connection_run_builtin_filters): Changed these to be unlock_no_update functions and call _dbus_connection_send_unlocked_no_update instead of dbus_connection_send to avoid locking errors. * doc/TODO: Removed the make Ping test TODO --- bus/driver.c | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) (limited to 'bus/driver.c') diff --git a/bus/driver.c b/bus/driver.c index da4edaa7..9e8df517 100644 --- a/bus/driver.c +++ b/bus/driver.c @@ -1280,6 +1280,45 @@ bus_driver_handle_introspect (DBusConnection *connection, ++i; } + + if (!_dbus_string_append_printf (&xml, " \n")) + goto oom; + + if (!_dbus_string_append_printf (&xml, " \n")) + goto oom; + + if (!_dbus_string_append_printf (&xml, " \n")) + goto oom; + + if (!_dbus_string_append_printf (&xml, " \n")) + goto oom; + + if (!_dbus_string_append_printf (&xml, " \n")) + goto oom; + + + + if (!_dbus_string_append_printf (&xml, " \n")) + goto oom; + + if (!_dbus_string_append_printf (&xml, " \n")) + goto oom; + + if (!_dbus_string_append_printf (&xml, " \n")) + goto oom; + + + + if (!_dbus_string_append_printf (&xml, " \n")) + goto oom; + + if (!_dbus_string_append_printf (&xml, " \n")) + goto oom; + + if (!_dbus_string_append_printf (&xml, " \n")) + goto oom; + + if (!_dbus_string_append (&xml, " \n")) goto oom; -- cgit