summaryrefslogtreecommitdiff
path: root/src/bus-proxyd
diff options
context:
space:
mode:
authorKay Sievers <kay@vrfy.org>2015-07-06 17:45:26 +0200
committerKay Sievers <kay@vrfy.org>2015-07-06 17:47:38 +0200
commitde865432f887e68ac7add166cf618c88431d6538 (patch)
treefdee61a983da2296091577365b27d53d93f2cfb0 /src/bus-proxyd
parente1141a962239ef9ad2383a7f57ff151597a2b982 (diff)
bus-proxyd: subscribe to unicast signals directed to the proxy connection
Diffstat (limited to 'src/bus-proxyd')
-rw-r--r--src/bus-proxyd/proxy.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/bus-proxyd/proxy.c b/src/bus-proxyd/proxy.c
index c0055d3788..f9308f25c3 100644
--- a/src/bus-proxyd/proxy.c
+++ b/src/bus-proxyd/proxy.c
@@ -189,6 +189,19 @@ static int proxy_prepare_matches(Proxy *p) {
if (r < 0)
return log_error_errno(r, "Failed to add match for NameAcquired: %m");
+ free(match);
+ match = strjoin("type='signal',"
+ "destination='",
+ unique,
+ "'",
+ NULL);
+ if (!match)
+ return log_oom();
+
+ r = sd_bus_add_match(p->destination_bus, NULL, match, NULL, NULL);
+ if (r < 0)
+ log_error_errno(r, "Failed to add match for NameAcquired: %m");
+
return 0;
}