<div dir="ltr"><br><br><div class="gmail_quote"><div dir="ltr">On Wed, Sep 19, 2018 at 9:00 PM <<a href="mailto:dbus-request@lists.freedesktop.org">dbus-request@lists.freedesktop.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>Message: 1<br>
Date: Wed, 19 Sep 2018 13:55:13 +1200<br>
From: Lawrence D'Oliveiro <<a href="mailto:ldo@geek-central.gen.nz" target="_blank">ldo@geek-central.gen.nz</a>><br>
To: <a href="mailto:dbus@lists.freedesktop.org" target="_blank">dbus@lists.freedesktop.org</a><br>
Subject: Re: Multiple connections to dbus-daemon in single appication<br>
Message-ID: <<a href="mailto:20180919135513.5fd678ae@theon.geek-central.gen.nz" target="_blank">20180919135513.5fd678ae@theon.geek-central.gen.nz</a>><br>
Content-Type: text/plain; charset=UTF-8<br>
<br>
On Wed, 19 Sep 2018 10:45:36 +0900, dtdang wrote:<br>
<br>
> > On Tue, 18 Sep 2018 10:00:21 +0900, dtdang wrote:<br>
>><br>
>> On Tue, 18 Sep 2018 13:22:51 +1200, Lawrence D'Oliveiro wrote:<br>
>>  <br>
>>> I would like to register in three separated connections since<br>
>>> client will send command with option (like using dbus-send with<br>
>>> option --dest=com.app.bluetooth or --dest=com.ap.wifi or<br>
>>> --dest=com.ap.ap). So I want to open three separated connection<br>
>>> with specific name in three threads to listen from client.  <br>
>><br>
>> You can do all that on one connection.<br>
>><br>
> Could you give any advises in detail ?<br>
> In worst case, there is three commands sending to three different<br>
> destination in parallel.<br>
<br>
It’s easy. You can request the registration of any number of names on a<br>
single bus connection<br>
<<a href="https://dbus.freedesktop.org/doc/api/html/group__DBusBus.html" rel="noreferrer" target="_blank">https://dbus.freedesktop.org/doc/api/html/group__DBusBus.html</a>>. Then,<br>
when you receive a message, you call dbus_message_get_destination()<br>
<<a href="https://dbus.freedesktop.org/doc/api/html/group__DBusMessage.html#gaac65c926e6253e49aa689b4f032fad45" rel="noreferrer" target="_blank">https://dbus.freedesktop.org/doc/api/html/group__DBusMessage.html#gaac65c926e6253e49aa689b4f032fad45</a>><br>
to determine the exact name it was addressed to, and dispatch your<br>
method-call handling on that.<br></blockquote><div><br></div><div>It would be a good approach in my case I think. Could you give me example of how to register multiple distinct name to application-bus-connection when connecting to dbus-daemon ?</div><div>e.g I want to register "com.dasan.bluetooth" and "com.dasan.wifi" and "com.dasan.ap" as name of bus-connection of my application.</div><div><br></div><div><br></div></div></div>