From 53971daa7bac0751e56be0c9e819b583f719b06c Mon Sep 17 00:00:00 2001 From: Chengwei Yang Date: Fri, 19 Jul 2013 10:48:55 +0800 Subject: [PATCH 1/2] DBus Spec: clearly speaking listenable address There are generally two kinds of address, listenable and connectable address. When talking about dbus server, it's listenable address and connectable address used by client. To avoid confusing, here in the spec, we're talking about listenable address and to connectable address, semi-conon seperated multiple addresses is also allowed but the first one always used regardless if there is a server listen at, so it will fail in that case. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=66915 Signed-off-by: Chengwei Yang --- doc/dbus-specification.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/dbus-specification.xml b/doc/dbus-specification.xml index 324dfd4..7b4e5e7 100644 --- a/doc/dbus-specification.xml +++ b/doc/dbus-specification.xml @@ -2925,9 +2925,9 @@ [FIXME clarify if attempting to connect to each is a requirement or just a suggestion] - When connecting to a server, multiple server addresses can be - separated by a semi-colon. The library will then try to connect - to the first address and if that fails, it'll try to connect to + When listening on an address, multiple server addresses can be + separated by a semi-colon. The library will then try to listen + on the first address and if that fails, it'll try to listen on the next one specified, and so forth. For example unix:path=/tmp/dbus-test;unix:path=/tmp/dbus-test2 -- 1.7.9.5