diff --git a/man/systemd-stdio-bridge.xml b/man/systemd-stdio-bridge.xml
index bef61cb7cf..002a91b129 100644
--- a/man/systemd-stdio-bridge.xml
+++ b/man/systemd-stdio-bridge.xml
@@ -31,9 +31,23 @@
Description
- systemd-stdio-bridge may be used as a STDIO or socket-activatable
- proxy to a given D-Bus endpoint.
+ systemd-stdio-bridge implements a proxy for a D-Bus endpoint. It expects to
+ receive an open connection to a bus when started, and will also connect to a (different) bus as a
+ client. It will then act as a server on the first connection, and forward messages between the two
+ busses. This program is suitable for socket activation: the first connection may be a pipe or a socket
+ and must be passed as either standard input, or as an open file descriptor according to the protocol
+ described in
+ sd_listen_fds3. The
+ second connection will be made by default to the local system bus, but this can be influenced by the
+ , , , and
+ options described below.
+ sd-bus3 uses
+ systemd-stdio-bridge to forward D-Bus connections over
+ ssh1,
+ or to connect to the bus of a different user, see
+ sd_bus_set_address3.
+
@@ -42,6 +56,10 @@
The following options are understood:
+
+
+
+
@@ -52,9 +70,6 @@
-
-
-
@@ -70,7 +85,6 @@
dbus-daemon1,
dbus-broker1,
D-Bus,
- sd-bus3,
systemd1
diff --git a/src/stdio-bridge/stdio-bridge.c b/src/stdio-bridge/stdio-bridge.c
index b45f7912cb..5d4ffa5e32 100644
--- a/src/stdio-bridge/stdio-bridge.c
+++ b/src/stdio-bridge/stdio-bridge.c
@@ -28,7 +28,7 @@ static bool arg_user = false;
static int help(void) {
printf("%s [OPTIONS...]\n\n"
- "STDIO or socket-activatable proxy to a given DBus endpoint.\n\n"
+ "Forward messages between two D-Bus busses via a pipe or socket.\n\n"
" -h --help Show this help\n"
" --version Show package version\n"
" -p --bus-path=PATH Path to the bus address (default: %s)\n"