我尝试找出可以使用DBus
以下命令访问哪些方法和数据,
dbus-send --system --type=method_call --print-reply --dest=net.connman /net/connman org.freedesktop.DBus.Introspectable.Introspect
我有,
method return time=1569225134.223103 sender=:1.5 -> destination=:1.77 serial=121 reply_serial=2
string "<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node>
<node name="service"/>
<node name="technology"/>
</node>
"
我知道服务和技术内部有一些“东西”,我通过反复试验找到了一些,还有一些通过在互联网上查找找到的。但我怎样才能知道这些节点里面有什么?我的目标是弄清楚我可以使用 访问ConnMan
的所有内容DBus
,因此一个更通用的问题是,如何探索ConnMan
与我可以访问的方法/数据相关的所有内容DBus
?
谢谢!