mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-06-16 20:18:28 +02:00
Patches from Tom Parker: - Fix memleaks - Join with worker thread rather than polling for its exit Patch from Bill Moss: - Cull duplicate ESSIDs from the scan list, taking highest strength AP git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@573 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
68 lines
2.9 KiB
C
68 lines
2.9 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_AP_LIST_H
|
|
#define NETWORK_MANAGER_AP_LIST_H
|
|
|
|
#include <glib.h>
|
|
#include "NetworkManager.h"
|
|
#include "NetworkManagerDevice.h"
|
|
|
|
|
|
typedef struct NMAccessPointList NMAccessPointList;
|
|
typedef struct NMAPListIter NMAPListIter;
|
|
|
|
NMAccessPointList * nm_ap_list_new (NMNetworkType type);
|
|
void nm_ap_list_ref (NMAccessPointList *list);
|
|
void nm_ap_list_unref (NMAccessPointList *list);
|
|
|
|
gboolean nm_ap_list_is_empty (NMAccessPointList *list);
|
|
|
|
void nm_ap_list_append_ap (NMAccessPointList *list, NMAccessPoint *ap);
|
|
void nm_ap_list_remove_ap (NMAccessPointList *list, NMAccessPoint *ap);
|
|
void nm_ap_list_remove_ap_by_essid (NMAccessPointList *list, const char *network);
|
|
void nm_ap_list_remove_duplicate_essids (NMAccessPointList *list);
|
|
|
|
NMAccessPoint * nm_ap_list_get_ap_by_essid (NMAccessPointList *list, const char *network);
|
|
NMAccessPoint * nm_ap_list_get_ap_by_address (NMAccessPointList *list, const struct ether_addr *addr);
|
|
|
|
void nm_ap_list_update_network_from_nmi (NMAccessPointList *list, const char *network, NMData *data);
|
|
|
|
void nm_ap_list_populate_from_nmi (NMAccessPointList *list, NMData *data);
|
|
|
|
void nm_ap_list_copy_properties (NMAccessPointList *dest, NMAccessPointList *source);
|
|
void nm_ap_list_copy_essids_by_address (NMAccessPointList *dest, NMAccessPointList *source);
|
|
void nm_ap_list_copy_one_essid_by_address (NMAccessPoint *ap, NMAccessPointList *search_list);
|
|
|
|
void nm_ap_list_diff (NMData *data, NMDevice *dev, NMAccessPointList *old, NMAccessPointList *new);
|
|
gboolean nm_ap_list_merge_scanned_ap (NMAccessPointList *list, NMAccessPoint *merge_ap, gboolean *new, gboolean *strength_changed);
|
|
|
|
gboolean nm_ap_list_lock (NMAccessPointList *list);
|
|
void nm_ap_list_unlock (NMAccessPointList *list);
|
|
|
|
NMAPListIter * nm_ap_list_iter_new (NMAccessPointList *list);
|
|
NMAccessPoint * nm_ap_list_iter_get_ap (NMAPListIter *iter);
|
|
NMAccessPoint * nm_ap_list_iter_next (NMAPListIter *iter);
|
|
void nm_ap_list_iter_free (NMAPListIter *iter);
|
|
|
|
void nm_ap_list_print_members (NMAccessPointList *list, const char *name);
|
|
|
|
#endif
|