diff options
author | Chengwei Yang <chengwei.yang@intel.com> | 2013-12-10 10:02:27 +0800 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2014-01-06 16:08:18 +0000 |
commit | 7628af5924dc4359e8f1334070310aabf3901ada (patch) | |
tree | d100191e91bc540fc68ad42e1eea202a0aa47e4f | |
parent | eeae8a6b1ca7375213ba06d311e10108794f21c3 (diff) | |
download | dbus-7628af5924dc4359e8f1334070310aabf3901ada.tar.gz |
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
Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
-rw-r--r-- | doc/dbus-specification.xml | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/doc/dbus-specification.xml b/doc/dbus-specification.xml index 5043849f..f1495559 100644 --- a/doc/dbus-specification.xml +++ b/doc/dbus-specification.xml @@ -3180,7 +3180,18 @@ <row> <entry>host</entry> <entry>(string)</entry> - <entry>dns name or ip address</entry> + <entry>DNS name or IP address</entry> + </row> + <row> + <entry>bind</entry> + <entry>(string)</entry> + <entry>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 <literal>127.0.0.1 + </literal>), 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". + </entry> </row> <row> <entry>port</entry> @@ -3256,7 +3267,13 @@ <row> <entry>host</entry> <entry>(string)</entry> - <entry>dns name or ip address</entry> + <entry>DNS name or IP address</entry> + </row> + <row> + <entry>bind</entry> + <entry>(string)</entry> + <entry>The same as for tcp: addresses + </entry> </row> <row> <entry>port</entry> |