mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-14 23:38:06 +02:00
Heavily modify Inaky's Intel WiMAX SDK glue (originally from connman) to be more generic and more thread-safe, and suitable for use with NetworkManager instead of rolling our own client code. Rewrite the NMDeviceWimax code to mostly work. Still to be done: actual connection logic, DHCP handling, spawning wimaxd if it's not started yet
63 lines
1.9 KiB
XML
63 lines
1.9 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<node name="/" xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0">
|
|
<interface name="org.freedesktop.NetworkManager.Device.WiMax">
|
|
<method name="GetNspList">
|
|
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_device_get_nsp_list"/>
|
|
<arg name="nsps" type="ao" direction="out">
|
|
<tp:docstring>
|
|
List of NSP object paths
|
|
</tp:docstring>
|
|
</arg>
|
|
<tp:docstring>
|
|
Get the list of NSPs visible to this device.
|
|
</tp:docstring>
|
|
</method>
|
|
|
|
<property name="HwAddress" type="s" access="read">
|
|
<tp:docstring>
|
|
Hardware address of the device.
|
|
</tp:docstring>
|
|
</property>
|
|
|
|
<property name="ActiveNsp" type="o" access="read">
|
|
<tp:docstring>
|
|
Object path of the NSP currently used by the WiMax device.
|
|
</tp:docstring>
|
|
</property>
|
|
|
|
<signal name="PropertiesChanged">
|
|
<arg name="properties" type="a{sv}" tp:type="String_Variant_Map">
|
|
<tp:docstring>
|
|
A dictionary mapping property names to variant boxed values.
|
|
</tp:docstring>
|
|
</arg>
|
|
<tp:docstring>
|
|
Emitted when the WiMax device's properties changed.
|
|
</tp:docstring>
|
|
</signal>
|
|
|
|
<signal name="NspAdded">
|
|
<arg name="nsp" type="o">
|
|
<tp:docstring>
|
|
The object path of the newly found NSP.
|
|
</tp:docstring>
|
|
</arg>
|
|
<tp:docstring>
|
|
Emitted when a new NSP is found by the device.
|
|
</tp:docstring>
|
|
</signal>
|
|
|
|
<signal name="NspRemoved">
|
|
<arg name="nsp" type="o">
|
|
<tp:docstring>
|
|
The object path of the NSP that has disappeared.
|
|
</tp:docstring>
|
|
</arg>
|
|
<tp:docstring>
|
|
Emitted when an NSP disappears from view of the device.
|
|
</tp:docstring>
|
|
</signal>
|
|
|
|
</interface>
|
|
</node>
|