2004-06-24 14:18:37 +00:00
|
|
|
/* 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
|
|
|
|
|
|
2004-09-13 17:43:16 +00:00
|
|
|
#include <iwlib.h>
|
2004-07-06 01:34:10 +00:00
|
|
|
#include "NetworkManager.h"
|
|
|
|
|
#include "NetworkManagerDevice.h"
|
2004-08-05 18:54:29 +00:00
|
|
|
#include "NetworkManagerAPList.h"
|
2004-07-06 01:34:10 +00:00
|
|
|
|
2004-11-08 19:00:04 +00:00
|
|
|
char * nm_wireless_64bit_ascii_to_hex (const unsigned char *ascii);
|
|
|
|
|
char * nm_wireless_128bit_ascii_to_hex (const unsigned char *ascii);
|
2004-11-02 04:54:39 +00:00
|
|
|
char * nm_wireless_128bit_key_from_passphrase (const char *passphrase);
|
2004-07-06 01:34:10 +00:00
|
|
|
|
2004-07-28 02:49:33 +00:00
|
|
|
gboolean nm_wireless_scan_monitor (gpointer user_data);
|
2004-06-24 14:18:37 +00:00
|
|
|
|
2004-09-13 17:43:16 +00:00
|
|
|
int nm_wireless_qual_to_percent (NMDevice *dev, const struct iw_quality *qual);
|
|
|
|
|
|
2004-06-24 14:18:37 +00:00
|
|
|
#endif
|