mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-02-15 10:20:30 +01:00
65 lines
1.6 KiB
XML
65 lines
1.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<node name="/">
|
|
<!--
|
|
org.freedesktop.NetworkManager.Device.P2PWireless:
|
|
@short_description: P2P Wi-Fi Device
|
|
|
|
-->
|
|
<interface name="org.freedesktop.NetworkManager.Device.P2PWireless">
|
|
<annotation name="org.gtk.GDBus.C.Name" value="Device_P2P_Wifi"/>
|
|
|
|
<!--
|
|
HwAddress:
|
|
|
|
The active hardware address of the device.
|
|
-->
|
|
<property name="HwAddress" type="s" access="read"/>
|
|
|
|
<!--
|
|
GroupOwner:
|
|
|
|
Whether this device is currently the group owner.
|
|
-->
|
|
<property name="GroupOwner" type="b" access="read"/>
|
|
|
|
<!--
|
|
WFDIEs:
|
|
|
|
The Wi-Fi Display information elements.
|
|
-->
|
|
<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 p2p wireless device.
|
|
-->
|
|
<property name="Peers" type="ao" access="read"/>
|
|
|
|
<!--
|
|
PeerAdded:
|
|
@peer: The object path of the newly found access point.
|
|
|
|
Emitted when a new P2P peer is found by the device.
|
|
-->
|
|
<signal name="PeerAdded">
|
|
<arg name="peer" type="o"/>
|
|
</signal>
|
|
|
|
<!--
|
|
PeerRemoved:
|
|
@peer: The object path of the P2P peer that has disappeared.
|
|
|
|
Emitted when a P2P peer disappears from view of the device.
|
|
-->
|
|
<signal name="PeerRemoved">
|
|
<arg name="peer" type="o"/>
|
|
</signal>
|
|
|
|
</interface>
|
|
</node>
|