diff options
author | Dan Williams <dcbw@redhat.com> | 2004-09-13 17:43:16 +0000 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2004-09-13 17:43:16 +0000 |
commit | ee710f0377f04e3233273a8550a159d59245e420 (patch) | |
tree | c31e1a8bc935712f3552335eda6337c4285478ac /docs | |
parent | 30a3c10262aa1ddec90fc78c8a3d4f65cd7b3f27 (diff) | |
download | NetworkManager-ee710f0377f04e3233273a8550a159d59245e420.tar.gz |
2004-09-13 Dan Williams <dcbw@redhat.com>
* TODO: fix typo
* docs/NetworkManager DBUS API.txt
- Update for new signal strength changes
* panel-applet/NMWirelessApplet.c
- Make panel icon show strength of the current connection
- Cleanups and memleak fixes
* panel-applet/NMWirelessApplet.h
- Add data members for signal strength on devices and networks
* panel-applet/NMWirelessAppletDbus.c
- Free more DBusErrors
- Update for new signal strength changes
- Make devices and networks more like real objects, use ref/unref methods
- Actually unlock the mutex when updating the active device
* src/NetworkManagerAP.c
- Change AP functions and data members from "quality"->"strength"
* src/NetworkManagerDbus.c
- Kill "getMaxQuality" and "getQuality" methods
- Add "getStrength" methods for Networks and Devices
* src/NetworkManagerDevice.[ch]
- Add accessors for device strength
- Add functions to update strength for a device. Note that not all drivers
actually support signal strength for scanned access points (Atmel drivers
being one)
- Calculate signal strength for each AP during scan
* src/NetworkManagerWireless.[ch]
- Add function to return signal strength % from a device and a raw quality struct
* test/nmclienttest.c
- Update for new signal strength changes
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@156 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
Diffstat (limited to 'docs')
-rw-r--r-- | docs/NetworkManager DBUS API.txt | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/docs/NetworkManager DBUS API.txt b/docs/NetworkManager DBUS API.txt index f2e3900333..1081166ed2 100644 --- a/docs/NetworkManager DBUS API.txt +++ b/docs/NetworkManager DBUS API.txt @@ -122,11 +122,9 @@ Methods: Wired: no cable plugged in Wireless: no base station, or bad encryption key - Name: getMaxQuality (Wireless only) Returns the maximum quality level of the wireless device, from - which a program may calculate a signal strength percentage based on this - number and the quality of an individual Network object + Name: getStrength (Wireless only) Return the strength percentage of the current wireless network Args: (none) - Returns: DBUS_TYPE_UINT32 The maximum quality any wireless network can have + Returns: DBUS_TYPE_INT32 The strength percentage of the current wireless network Name: getActiveNetwork (Wireless only) Returns the Network object indentifier of the wireless network @@ -164,9 +162,9 @@ Methods: Returns: DBUS_TYPE_STRING - Name: getQuality Returns the quality of this wirless network + Name: getStrength Return the strength percentage of the current wireless network Args: (none) - Returns: DBUS_TYPE_INT32 A number between 0 and the device's Maximum Quality + Returns: DBUS_TYPE_INT32 The strength percentage of the current wireless network Name: getFrequency Returns the frequency/channel this wireless network |