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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
<?xml version="1.0" encoding="UTF-8" ?>
<node name="/com/lomiri/connectivity1/Private" xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0">
<interface name="com.lomiri.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>
<method name="SetHotspotAuth">
<arg type="s" direction="in" name="auth"/>
</method>
<method name="AddVpnConnection">
<arg type="i" direction="in" name="type"/>
<arg type="o" direction="out" name="path"/>
</method>
<method name="ImportVpnConnection">
<arg type="i" direction="in" name="type"/>
<arg type="s" direction="in" name="filepath"/>
<arg type="o" direction="out" name="path"/>
</method>
<method name="RemoveVpnConnection">
<arg type="o" direction="in" name="path"/>
</method>
<property name="HotspotPassword" type="s" access="read"/>
<property name="HotspotAuth" type="s" access="read"/>
<property name="VpnConnections" type="ao" access="read"/>
<property name="MobileDataEnabled" type="b" access="readwrite"/>
<property name="SimForMobileData" type="o" access="readwrite"/>
<property name="Modems" type="ao" access="read"/>
<property name="Sims" type="ao" access="read"/>
<signal name="ReportError">
<arg type="i" direction="out" name="reason"/>
</signal>
</interface>
</node>
|