mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-28 14:30:09 +01:00
* info-daemon/NetworkManagerInfoDbus.c - (nmi_dbus_nmi_message_handler): make sure 'dialog' exists before using it * src/NetworkManagerDevice.c - (nm_device_new): Don't store the entire range struct, use only what we need (which is currently avg_quality, max_quality, and frequencies). Also zero device structure when we've free'd it to maybe expose errors down the line. - (nm_device_update_signal_strength): grab the scan mutex before getting quality data from the card since quality will be useless during a scan. Call updated wireless qual-to-percent function with values stored in nm_device_new() earlier. - Remove some unused functions (nm_device_get_max_quality(), nm_device_get_noise(), nm_device_get_bad_crypt_packets()) - (nm_device_activate_wireless_adhoc): use new frequency values we go in nm_device_new() - (get_initial_auth_method): always use the Auth method that's in the allowed list if available. Problem was this: when the WEP key is wrong, NM will try OS then SK modes, and then get stuck in SK mode after that. This should reset it. - (nm_device_wireless_process_scan_results): work with new qual-to-percent function * src/NetworkManagerWireless.c - (nm_wireless_qual_to_percent): try to make this function actually work and mimic iwlib behavior. Use card's idea of quality divided by max_qual if that's all present, otherwise fall back to signal-to-noise ratios. git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@402 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
39 lines
1.4 KiB
C
39 lines
1.4 KiB
C
/* NetworkManager -- Network link manager
|
|
*
|
|
* Dan Williams <dcbw@redhat.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
* (C) Copyright 2004 Red Hat, Inc.
|
|
*/
|
|
|
|
#ifndef NETWORK_MANAGER_WIRELESS_H
|
|
#define NETWORK_MANAGER_WIRELESS_H
|
|
|
|
#include <iwlib.h>
|
|
#include "NetworkManager.h"
|
|
#include "NetworkManagerDevice.h"
|
|
#include "NetworkManagerAPList.h"
|
|
|
|
|
|
char * nm_wireless_64bit_ascii_to_hex (const unsigned char *ascii);
|
|
char * nm_wireless_128bit_ascii_to_hex (const unsigned char *ascii);
|
|
char * nm_wireless_128bit_key_from_passphrase (const char *passphrase);
|
|
|
|
int nm_wireless_qual_to_percent (const struct iw_quality *qual,
|
|
const struct iw_quality *max_qual,
|
|
const struct iw_quality *avg_qual);
|
|
|
|
#endif
|