mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-03-22 05:40:35 +01:00
2006-01-30 Dan Williams <dcbw@redhat.com>
* src/nm-device-802-11-wireless.c - (supplicant_monitor_start): increase connect/auth timeout to 20 seconds from 10 seconds git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1412 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
parent
8f39a2bcea
commit
b28dad1522
2 changed files with 8 additions and 2 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2006-01-30 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
* src/nm-device-802-11-wireless.c
|
||||
- (supplicant_monitor_start): increase connect/auth timeout to
|
||||
20 seconds from 10 seconds
|
||||
|
||||
2006-01-30 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
* src/Makefile.am
|
||||
|
|
|
|||
|
|
@ -2539,8 +2539,8 @@ supplicant_monitor_start (NMDevice80211Wireless *self)
|
|||
g_source_set_callback (self->priv->sup_status, (GSourceFunc) supplicant_status_cb, self, NULL);
|
||||
g_source_attach (self->priv->sup_status, context);
|
||||
|
||||
/* Set up a timeout on the association to kill it after 10s */
|
||||
self->priv->sup_timeout = g_timeout_source_new (10000);
|
||||
/* Set up a timeout on the association to kill it after 20s */
|
||||
self->priv->sup_timeout = g_timeout_source_new (20000);
|
||||
g_source_set_callback (self->priv->sup_timeout, supplicant_timeout_cb, self, NULL);
|
||||
g_source_attach (self->priv->sup_timeout, context);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue