mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-28 11:00:09 +01:00
2006-01-08 Dan Williams <dcbw@redhat.com>
We now require a patch for wpa_supplicant to support Ad-Hoc networks: http://people.redhat.com/dcbw/wpa_supplicant-ctrl-iface-ap-scan.patch * src/nm-device-802-11-wireless.c - (supplicant_send_network_config): turn off wpa_supplicant's scanning. Fixes Ad-Hoc networks. git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1299 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
parent
1754f71e7f
commit
fb8c10a370
2 changed files with 15 additions and 0 deletions
10
ChangeLog
10
ChangeLog
|
|
@ -1,3 +1,13 @@
|
|||
2006-01-08 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
We now require a patch for wpa_supplicant to support Ad-Hoc
|
||||
networks:
|
||||
http://people.redhat.com/dcbw/wpa_supplicant-ctrl-iface-ap-scan.patch
|
||||
|
||||
* src/nm-device-802-11-wireless.c
|
||||
- (supplicant_send_network_config): turn off wpa_supplicant's
|
||||
scanning. Fixes Ad-Hoc networks.
|
||||
|
||||
2006-01-08 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
* src/nm-ap-security.c
|
||||
|
|
|
|||
|
|
@ -2432,6 +2432,11 @@ supplicant_send_network_config (NMDevice80211Wireless *self,
|
|||
ctrl = self->priv->sup_ctrl;
|
||||
g_assert (ctrl);
|
||||
|
||||
/* Tell wpa_supplicant that we'll do the scanning */
|
||||
if (!nm_utils_supplicant_request_with_check (ctrl, "OK", __func__, NULL,
|
||||
"AP_SCAN 2"))
|
||||
goto out;
|
||||
|
||||
/* Standard network setup info */
|
||||
if (!(response = nm_utils_supplicant_request (ctrl, "ADD_NETWORK")))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue