From 6bb8e1caa1c01cc1367b805391095451b81388b2 Mon Sep 17 00:00:00 2001 From: Chengwei Yang Date: Tue, 10 Dec 2013 10:02:27 +0800 Subject: [PATCH v2 2/3] DBus Spec: add document of bind for tcp/nonce-tcp transport tcp/nonce-tcp transport has a "bind" key, which can be specified a hostname and will override hostname specified in "host" key. "bind" has a special value "*" which means ip address 0.0.0.0 and will cause dbus-daemon listen on all interfaces. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=72301 --- doc/dbus-specification.xml | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/doc/dbus-specification.xml b/doc/dbus-specification.xml index 741a335..89a6ee0 100644 --- a/doc/dbus-specification.xml +++ b/doc/dbus-specification.xml @@ -3121,7 +3121,18 @@ host (string) - dns name or ip address + DNS name or IP address + + + bind + (string) + Used in a listenable address to configure the interface + on which the server will listen: either the IP address of one of + the local machine's interfaces (most commonly 127.0.0.1 + ), or a DNS name that resolves to one of those IP + addresses, or '*' to listen on all interfaces simultaneously. + If not specified, the default is the same value as "host". + port @@ -3191,7 +3202,13 @@ host (string) - dns name or ip address + DNS name or IP address + + + bind + (string) + The same as for tcp: addresses + port -- 1.7.9.5