mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-04 11:00:18 +01:00
2007-09-22 Dan Williams <dcbw@redhat.com>
* src/nm-device-802-11-wireless.c - (real_bring_up): update signal strength every 6 seconds, not 2. No real reason to do it so often, and reduces wakeups for clients. git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2854 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
parent
ccbc1df785
commit
275dae9e6e
2 changed files with 9 additions and 3 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2007-09-22 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
* src/nm-device-802-11-wireless.c
|
||||
- (real_bring_up): update signal strength every 6 seconds, not 2. No
|
||||
real reason to do it so often, and reduces wakeups for clients.
|
||||
|
||||
2007-09-21 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
* src/nm-device-802-11-wireless.c
|
||||
|
|
|
|||
|
|
@ -531,7 +531,7 @@ out:
|
|||
/*
|
||||
* nm_device_802_11_periodic_update
|
||||
*
|
||||
* Periodically update device statistics and link state.
|
||||
* Periodically update device statistics.
|
||||
*
|
||||
*/
|
||||
static gboolean
|
||||
|
|
@ -579,8 +579,8 @@ real_bring_up (NMDevice *dev)
|
|||
init_supplicant_interface (self);
|
||||
}
|
||||
|
||||
/* Peridoically update link status and signal strength */
|
||||
priv->periodic_source_id = g_timeout_add (2000, nm_device_802_11_periodic_update, self);
|
||||
/* Peridoically update signal strength */
|
||||
priv->periodic_source_id = g_timeout_add (6000, nm_device_802_11_periodic_update, self);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue