Могу ли я подключить QDBusServer через каналы? - PullRequest
0 голосов
/ 27 апреля 2019

Я использую Qt DBus через TCP. Если я обнаружил, что я могу установить метод UNIX, возможно ли использовать его только через PIPES (и это также будет работать в Windows)

Я пытался передать method=UNIX безуспешно. Есть идеи что сдать и возможно ли это? Я говорю об этой строке здесь: QDBusServer(dbusAddress, this)

// Application Options:
// -h, –host=HOSTNAME Hostname or IP of the remote host
// -p, –port-ssh=PORT-SSH SSH port on the remote host
// -u, –username=USERNAME SSH username on the remote host
// -w, –password=PASSWORD SSH password on the remote host
// -m, –method=DBUS_TRANSPORT_METHOD The D-Bus transport method to use (TCP, UNIX, abstract-UNIX)
// -b, –bind=HOSTNAME The bind-address to listen for D-Bus client connections on
// -d, –bus-address=BUS_ADDRESS The DBus session bus address of the remote D-Bus daemon
// -t, –port-tcp=PORT-TCP The TCP port to listen for DBus client connections on
// -v, –verbose=VERBOSE Set verbosity level (3, 2, 1, 0, -1)=(packet,protocol,functions,important,none)
...