blob: 9a77eb1be8835351df3f1a60390b2c93b15fbf68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node name="/">
<interface name="org.bluez.Agent">
<method name="Release" />
<method name="RequestPinCode">
<arg type="o" direction="in"/>
<arg type="s" direction="out"/>
</method>
<method name="RequestPasskey">
<arg type="o" direction="in"/>
<arg type="u" direction="out"/>
</method>
<method name="DisplayPasskey">
<arg type="o" direction="in"/>
<arg type="u" direction="in"/>
<arg type="y" direction="in"/>
</method>
<method name="RequestConfirmation">
<arg type="o" direction="in"/>
<arg type="u" direction="in"/>
</method>
<method name="Authorize">
<arg type="o" direction="in"/>
<arg type="s" direction="in"/>
</method>
<method name="ConfirmModeChange">
<arg type="s" direction="in"/>
</method>
<method name="Cancel" />
</interface>
<node name="org"/>
</node>
|