mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-26 05:20:08 +01:00
* src/vpn-manager/nm-vpn-manager.c: Handle the DBUS state changes itself. Handle device state changes and disconnect VPN if it's device deactivates. * src/nm-dbus-nm.c: * src/nm-dbus-nm.h: * src/nm-dbus-device.c: * src/nm-dbus-device.c: * src/nm-dbus-net.c: * src/nm-dbus-net.h: Remove. All of it is implemented byt the new dbus API. * src/NetworkManagerMain.h: Get rid of all but 3 properties of NMData. * src/nm-device.c (nm_device_get_by_udi): (nm_device_get_by_iface): Remove. This doesn't belong here and is already implemented in the correct location (NMManager). Rip out all the test_device stuff. * src/NetworkManagerPolicy.c: Remove the leftover activation success and failure handlers, it's all done by NMDevice already. * src/NetworkManager.c: Move the signal handling here from nm-logging.c Remove the iochannel hack to route the unix signals to the main thread since we're not threaded anymore. * src/NetworkManagerAP.c: Implement HWAddress property. * src/NetworkManagerDbus.c: Remove the dbus signal sending code, it happens automatically with dbus-glib. * src/nm-netlink-monitor.c: * src/nm-netlink-monitor.h: - Move it low in the class hierarchy, don't reference any NM types. - Remove private data from the header. - Use type safe checks in public API methods. - Make it a singleton so we don't have to pass the single reference around. git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2339 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
20 lines
671 B
XML
20 lines
671 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<node name="/">
|
|
<interface name="org.freedesktop.NetworkManager.AccessPoint">
|
|
<property name="Capabilities" type="u" access="read"/>
|
|
<property name="Encrypted" type="b" access="read"/>
|
|
<property name="Essid" type="s" access="read"/>
|
|
<property name="Frequency" type="d" access="read"/>
|
|
<property name="HwAddress" type="s" access="read"/>
|
|
<property name="Mode" type="i" access="read"/>
|
|
<property name="Rate" type="u" access="read"/>
|
|
<property name="Strength" type="i" access="read"/>
|
|
|
|
<signal name="StrengthChanged">
|
|
<arg name="strength" type="y"/>
|
|
</signal>
|
|
|
|
</interface>
|
|
</node>
|
|
|