diff options
Diffstat (limited to 'dbus/dbus-transport.c')
-rw-r--r-- | dbus/dbus-transport.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/dbus/dbus-transport.c b/dbus/dbus-transport.c index 30da077f..03fea75b 100644 --- a/dbus/dbus-transport.c +++ b/dbus/dbus-transport.c @@ -29,6 +29,7 @@ #include "dbus-address.h" #ifdef DBUS_BUILD_TESTS #include "dbus-transport-debug.h" +#include "dbus-server-debug-pipe.h" #endif /** @@ -229,7 +230,16 @@ _dbus_transport_open (const char *address, transport = _dbus_transport_debug_client_new (name, result); } -#endif + else if (strcmp (method, "debug-pipe") == 0) + { + const char *name = dbus_address_entry_get_value (entries[i], "name"); + + if (name == NULL) + goto bad_address; + + transport = _dbus_transport_debug_pipe_new (name, result); + } +#endif else goto bad_address; |