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
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<?xml version="1.0" encoding="UTF-8" ?>
<node name="/com/ubuntu/connectivity1/Private" xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0">
<interface name="com.ubuntu.connectivity1.Private">
<method name="UnlockAllModems">
</method>
<method name="UnlockModem">
<arg type="s" direction="in" name="modem"/>
</method>
<method name="SetFlightMode">
<arg type="b" direction="in" name="enabled"/>
</method>
<method name="SetWifiEnabled">
<arg type="b" direction="in" name="enabled"/>
</method>
<method name="SetHotspotSsid">
<arg type="ay" direction="in" name="ssid"/>
</method>
<method name="SetHotspotPassword">
<arg type="s" direction="in" name="password"/>
</method>
<method name="SetHotspotEnabled">
<arg type="b" direction="in" name="enabled"/>
</method>
<method name="SetHotspotMode">
<arg type="s" direction="in" name="mode"/>
</method>
<property name="HotspotPassword" type="s" access="read"/>
<signal name="ReportError">
<arg type="i" direction="out" name="reason"/>
</signal>
</interface>
</node>
|