mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-04 07:08:17 +02:00
After renaming the files, also rename all the content to follow the "Wi-Fi P2P" naming scheme.
102 lines
2.3 KiB
XML
102 lines
2.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<node name="/">
|
|
<!--
|
|
org.freedesktop.NetworkManager.Device.WifiP2P:
|
|
@short_description: Wi-Fi P2P Device
|
|
|
|
Since: 1.16
|
|
-->
|
|
<interface name="org.freedesktop.NetworkManager.Device.WifiP2P">
|
|
<annotation name="org.gtk.GDBus.C.Name" value="Device_Wifi_P2P"/>
|
|
|
|
<!--
|
|
HwAddress:
|
|
|
|
The active hardware address of the device.
|
|
|
|
Since: 1.16
|
|
-->
|
|
<property name="HwAddress" type="s" access="read"/>
|
|
|
|
<!--
|
|
GroupOwner:
|
|
|
|
Whether this device is currently the group owner.
|
|
|
|
Since: 1.16
|
|
-->
|
|
<property name="GroupOwner" type="b" access="read"/>
|
|
|
|
<!--
|
|
WFDIEs:
|
|
|
|
The Wi-Fi Display information elements.
|
|
|
|
Since: 1.16
|
|
-->
|
|
<property name="WFDIEs" type="ay" access="read">
|
|
<!-- gdbus-codegen assumes that "ay" means "non-UTF-8 string" and
|
|
won't deal with '\0' bytes correctly.
|
|
-->
|
|
<annotation name="org.gtk.GDBus.C.ForceGVariant" value="1"/>
|
|
</property>
|
|
|
|
<!--
|
|
Peers:
|
|
|
|
List of object paths of peers visible to this Wi-Fi P2P device.
|
|
|
|
Since: 1.16
|
|
-->
|
|
<property name="Peers" type="ao" access="read"/>
|
|
|
|
<!--
|
|
StartFind:
|
|
@options: Options of find. Currently 'timeout' option with value of "i"
|
|
in the range of 1-600 seconds is supported. The default is
|
|
30 seconds.
|
|
|
|
Start a find operation for Wi-Fi P2P peers.
|
|
|
|
Since: 1.16
|
|
-->
|
|
<method name="StartFind">
|
|
<arg name="options" type="a{sv}" direction="in"/>
|
|
</method>
|
|
|
|
<!--
|
|
StopFind:
|
|
|
|
Stop an ongoing find operation again.
|
|
|
|
Since: 1.16
|
|
-->
|
|
<method name="StopFind">
|
|
</method>
|
|
|
|
<!--
|
|
PeerAdded:
|
|
@peer: The object path of the newly found access point.
|
|
|
|
Emitted when a new Wi-Fi P2P peer is found by the device.
|
|
|
|
Since: 1.16
|
|
-->
|
|
<signal name="PeerAdded">
|
|
<arg name="peer" type="o"/>
|
|
</signal>
|
|
|
|
<!--
|
|
PeerRemoved:
|
|
@peer: The object path of the Wi-Fi P2P peer that has disappeared.
|
|
|
|
Emitted when a Wi-Fi P2P peer disappears from view of the device.
|
|
|
|
Since: 1.16
|
|
-->
|
|
<signal name="PeerRemoved">
|
|
<arg name="peer" type="o"/>
|
|
</signal>
|
|
|
|
</interface>
|
|
</node>
|